mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-22 17:22:03 +00:00
23 lines
882 B
Ruby
23 lines
882 B
Ruby
# -*- encoding: utf-8 -*-
|
|
$:.unshift File.expand_path('../lib', __FILE__)
|
|
require File.expand_path('../lib/claide/gem_version', __FILE__)
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "claide"
|
|
s.version = CLAide::VERSION
|
|
s.license = "MIT"
|
|
s.email = ["eloy.de.enige@gmail.com", "fabiopelosin@gmail.com"]
|
|
s.homepage = "https://github.com/CocoaPods/CLAide"
|
|
s.authors = ["Eloy Duran", "Fabio Pelosin"]
|
|
|
|
s.summary = "A small command-line interface framework."
|
|
|
|
s.files = `git ls-files -z`.split("\0").reject { |f| f =~ /\A(spec|examples)/i }
|
|
|
|
## Make sure you can build the gem on older versions of RubyGems too:
|
|
s.rubygems_version = "1.6.2"
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
s.specification_version = 3 if s.respond_to? :specification_version
|
|
|
|
s.required_ruby_version = ">= 2.3.0"
|
|
end
|