Sha256: 09cec1ff1656c9f52ff1cffe037cbda70fc1ffa8edcf447d71f022552f3f93b3
Contents?: true
Size: 885 Bytes
Versions: 1
Compression:
Stored size: 885 Bytes
Contents
require "rubygems" spec = Gem::Specification.new do |gem| gem.name = "getopt" gem.version = "1.3.7" gem.author = "Daniel J. Berger" gem.email = "djberg96@gmail.com" gem.homepage = "http://www.rubyforge.org/projects/shards" gem.platform = Gem::Platform::RUBY gem.summary = "Getopt::Std and Getopt::Long option parsers for Ruby" gem.description = "Getopt::Std and Getopt::Long option parsers for Ruby" gem.test_files = Dir["test/*.rb"] gem.has_rdoc = true gem.files = Dir['lib/**/*.rb'] + Dir['[A-Z]*'] + Dir['test/*'] + Dir['examples/*.rb'] gem.files.reject! { |fn| fn.include? "CVS" } gem.require_path = "lib" gem.extra_rdoc_files = ["README", "CHANGES", "MANIFEST"] gem.rubyforge_project = 'shards' end if $0 == __FILE__ Gem.manage_gems Gem::Builder.new(spec).build end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
getopt-1.3.7 | getopt.gemspec |