Sha256: 631f27db5c59a38b03c3593b4df6cd96e145337f5b7961badf102bc93487670f
Contents?: true
Size: 1.59 KB
Versions: 1
Compression:
Stored size: 1.59 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'optimist_xl' Gem::Specification.new do |spec| spec.name = "optimist_xl" spec.version = OptimistXL::VERSION spec.authors = ["William Morgan", "Keenan Brock", "Jason Frey", "Ben Bowers"] spec.email = "nanobowers@gmail.com" spec.summary = "OptimistXL is a commandline option parser for Ruby that just gets out of your way." spec.description = "OptimistXL 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. This gem is an enhanced-feature fork of the Optimist gem." spec.homepage = "https://github.com/nanobowers/optimist_xl/" 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.metadata = { "changelog_uri" => "https://github.com/nanobowers/optimist_xl/blob/master/History.txt", "source_code_uri" => "https://github.com/nanobowers/optimist_xl/", "bug_tracker_uri" => "https://github.com/nanobowers/optimist_xl/issues", } spec.require_paths = ["lib"] spec.add_development_dependency "minitest", "~> 5.4.3" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "chronic" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
optimist_xl-3.1.1 | optimist_xl.gemspec |