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