forked from rubyzip/rubyzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubyzip.gemspec
37 lines (32 loc) · 1.54 KB
/
rubyzip.gemspec
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
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
require_relative 'lib/zip/version'
Gem::Specification.new do |s|
s.name = 'rubyzip'
s.version = ::Zip::VERSION
s.authors = ['Robert Haines', 'John Lees-Miller', 'Alexander Simonov']
s.email = [
]
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.md Changelog.md Rakefile rubyzip.gemspec]
s.require_paths = ['lib']
s.license = 'BSD-2-Clause'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/rubyzip/rubyzip/issues',
'changelog_uri' => "https://github.com/rubyzip/rubyzip/blob/v#{s.version}/Changelog.md",
'documentation_uri' => "https://www.rubydoc.info/gems/rubyzip/#{s.version}",
'source_code_uri' => "https://github.com/rubyzip/rubyzip/tree/v#{s.version}",
'wiki_uri' => 'https://github.com/rubyzip/rubyzip/wiki'
}
s.required_ruby_version = '>= 2.5'
s.add_development_dependency 'minitest', '~> 5.4'
s.add_development_dependency 'rake', '~> 12.3.3'
s.add_development_dependency 'rubocop', '~> 1.12.0'
s.add_development_dependency 'rubocop-performance', '~> 1.10.0'
s.add_development_dependency 'rubocop-rake', '~> 0.5.0'
s.add_development_dependency 'simplecov', '~> 0.18.0'
s.add_development_dependency 'simplecov-lcov', '~> 0.8'
end