rubyzip/rubyzip.gemspec

12 lines
455 B
Ruby
Raw Normal View History

2010-09-24 21:17:52 +08:00
spec = Gem::Specification.new do |s|
s.name = 'rubyzip'
2011-11-18 04:27:26 +08:00
s.version = "0.9.4"
2010-09-24 21:17:52 +08:00
s.author = "Alan Harper"
s.email = "alan@aussiegeek.net"
s.homepage = "http://github.com/aussiegeek/rubyzip"
s.platform = Gem::Platform::RUBY
s.summary = "rubyzip is a ruby module for reading and writing zip files"
s.files = Dir.glob("{samples,lib}/**/*.rb") + %w{ README.md NEWS TODO Rakefile }
2010-09-24 21:17:52 +08:00
s.require_path = 'lib'
2011-11-18 04:27:26 +08:00
s.required_ruby_version = '>= 1.8.7'
end