Uh oh!
There was an error while loading. Please reload this page.
forked from jdleesmiller/rubyzip
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrubyzip.gemspec
More file actions
Latest commit
25 lines (23 loc) · 1.05 KB
/
Copy pathrubyzip.gemspec
File metadata and controls
25 lines (23 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#-*- encoding: utf-8 -*-
lib=File.expand_path('../lib',__FILE__)
$LOAD_PATH.unshift(lib)unless $LOAD_PATH.include?(lib)
require'zip/version'
Gem::Specification.newdo |s|
s.name='rubyzip'
s.version= ::Zip::VERSION
s.authors=['Alexander Simonov']
s.email=['alex@simonov.me']
s.homepage='http://github.com/rubyzip/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.mdTODORakefile]
s.test_files=Dir.glob('test/**/*')
s.require_paths=['lib']
s.license='BSD 2-Clause'
s.required_ruby_version='>= 1.9.2'
s.add_development_dependency'rake','~> 10.3'
s.add_development_dependency'pry','~> 0.10'
s.add_development_dependency'minitest','~> 5.4'
s.add_development_dependency'coveralls','~> 0.7'
s.add_development_dependency'rubocop','~> 0.49.1'
end