rubyzip/rubyzip.gemspec

18 lines
743 B
Ruby
Raw Normal View History

2013-06-03 02:33:03 +08:00
#-*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zip/version'
2010-09-24 21:17:52 +08:00
spec = Gem::Specification.new do |s|
2013-06-03 02:33:03 +08:00
s.name = 'rubyzip'
s.version = ::Zip::VERSION
s.authors = ["Alexander Simonov"]
s.email = ["alex@simonov.me"]
s.homepage = "http://github.com/simonoff/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 }
s.require_paths = ['lib']
2011-11-18 04:27:26 +08:00
s.required_ruby_version = '>= 1.8.7'
2011-11-26 13:20:02 +08:00
end