Sha256: 730e651d8a5d8f7ddfbf0b26f5c853dc57dad18645d404a954a15d3a257008b3
Contents?: true
Size: 891 Bytes
Versions: 1
Compression:
Stored size: 891 Bytes
Contents
require 'rubygems' Gem::Specification.new do |spec| spec.name = 'getopt' spec.version = '1.4.2' spec.author = 'Daniel J. Berger' spec.license = 'Artistic 2.0' spec.email = 'djberg96@gmail.com' spec.homepage = 'https://github.com/djberg96/getopt' spec.summary = 'Getopt::Std and Getopt::Long option parsers for Ruby' spec.test_files = Dir['test/*.rb'] spec.files = Dir['**/*'].reject{ |f| f.include?('git') } spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST'] spec.add_development_dependency('test-unit', '>= 2.5.0') spec.description = <<-EOF The getopt library provides two different command line option parsers. They are meant as easier and more convenient replacements for the command line parsers that ship as part of the Ruby standard library. Please see the README for additional comments. EOF end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
getopt-1.4.2 | getopt.gemspec |