rubyzip/rubyzip.gemspec

14 lines
535 B
Ruby
Raw Normal View History

2010-09-24 21:17:52 +08:00
PKG_VERSION = File.read('lib/zip/zip.rb').match(/\s+VERSION\s*=\s*'(.*)'/)[1]
spec = Gem::Specification.new do |s|
s.name = 'rubyzip'
s.version = PKG_VERSION
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 NEWS TODO Rakefile }
s.require_path = 'lib'
s.required_ruby_version = '>= 1.8.6'
end