forked from masamitsu-murase/seven_zip_ruby
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathseven-zip.gemspec
29 lines (24 loc) · 1.3 KB
/
seven-zip.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'seven_zip_ruby/version'
Gem::Specification.new do |spec|
spec.name = "seven-zip"
spec.version = SevenZipRuby::VERSION
spec.authors = ["Ribose Inc."]
spec.email = ["[email protected]"]
spec.description = %q{SevenZipRuby (seven-zip) is a ruby gem library to read and write 7zip archives. This gem is based on seven_zip_ruby gem by Masamitsu MURASE ([email protected]).}
spec.summary = %q{This is a ruby gem library to read and write 7zip files.}
spec.homepage = "https://github.com/fontist/seven_zip_ruby"
spec.license = "LGPL-2.1-or-later"
spec.files = `git ls-files`.split($/).select{ |i| !(i.start_with?("pkg") || i.start_with?("resources")) }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.3.0'
spec.add_development_dependency "bundler", "~> 2"
spec.add_development_dependency "rake", "~> 13"
spec.add_development_dependency "rspec", "~> 3"
spec.extensions << "ext/seven_zip_ruby/extconf.rb"
spec.extensions << "ext/p7zip/extconf.rb"
end