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"
|
2011-10-05 04:49:33 +08:00
|
|
|
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'
|
2011-01-07 20:59:51 +08:00
|
|
|
end
|