# # contributed by Assaph Mehr # require 'rubygems' spec = Gem::Specification.new do |s| s.name = 'arrayfields' s.version = File.read("VERSION").strip s.platform = Gem::Platform::RUBY s.summary = "Allow keyword access to arrays" #s.files = %w{lib/arrayfields.rb} s.files = Dir['lib/*'] s.require_path = 'lib' s.autorequire = "arrayfields" s.has_rdoc = true s.test_suite_file = "test/arrayfields.rb" s.author = "Ara T. Howard" s.email = "ara.t.howard@noaa.gov" s.homepage = "http://raa.ruby-lang.org/project/arrayfields" end if $0==__FILE__ Gem::Builder.new(spec).build end