Sha256: 4b4f74f30aeff35acc7660e80ff07c139487f3f3714899c75b7d3f1bdf9460d7
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'trollop' Gem::Specification.new do |spec| spec.name = "trollop" spec.version = Trollop::VERSION spec.authors = ["William Morgan", "Keenan Brock"] spec.email = "keenan@thebrocks.net" spec.summary = "Trollop is a commandline option parser for Ruby that just gets out of your way." spec.description = "Trollop is a commandline option parser for Ruby that just gets out of your way. One line of code per option is all you need to write. For that, you get a nice automatically-generated help page, robust option parsing, command subcompletion, and sensible defaults for everything you don't specify." spec.homepage = "http://manageiq.github.io/trollop/" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "minitest", "~> 4.7.3" spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "chronic" spec.add_development_dependency "coveralls" spec.add_development_dependency "mime-types" end
Version data entries
4 entries across 2 versions & 2 rubygems