1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
$:.unshift './lib'
require 'slop'
Gem::Specification.new do |s|
s.name = 'slop'
s.version = Slop::VERSION
s.summary = 'Simple Lightweight Option Parsing'
s.description = 'A DSL for gathering options and parsing command line flags'
s.author = 'Lee Jarvis'
s.email = 'ljjarvis@gmail.com'
s.homepage = 'http://github.com/leejarvis/slop'
s.files = [".travis.yml","CHANGELOG.md","Gemfile","LICENSE","README.md","Rakefile","lib/slop.rb","lib/slop/error.rb","lib/slop/option.rb","lib/slop/options.rb","lib/slop/parser.rb","lib/slop/result.rb","lib/slop/types.rb","slop.gemspec","test/error_test.rb","test/option_test.rb","test/options_test.rb","test/parser_test.rb","test/result_test.rb","test/slop_test.rb","test/test_helper.rb","test/types_test.rb"]
s.test_files = ["test/error_test.rb","test/option_test.rb","test/options_test.rb","test/parser_test.rb","test/result_test.rb","test/slop_test.rb","test/test_helper.rb","test/types_test.rb"]
s.license = 'MIT'
s.required_ruby_version = '>= 2.0.0'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest', '~> 5.0.0'
end
|