Sha256: ac6cfc8c4a5ae0083461a08a0d6f6b142005161850e54e9914e0c50fcccf98ac
Contents?: true
Size: 1.8 KB
Versions: 1
Compression:
Stored size: 1.8 KB
Contents
# frozen_string_literal: true require_relative "lib/excavate/version" Gem::Specification.new do |spec| spec.name = "excavate" spec.version = Excavate::VERSION spec.authors = ["Ribose Inc."] spec.email = ["open.source@ribose.com"] spec.summary = "Extract nested archives with a single command." spec.description = "Extract nested archives with a single command." spec.homepage = "https://github.com/fontist/excavate" spec.license = "BSD-3-Clause" spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/fontist/excavate" spec.metadata["changelog_uri"] = "https://github.com/fontist/excavate" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| f.match(%r{\A(?:test|spec|features|bin)/}) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "arr-pm", "~> 0.0" spec.add_runtime_dependency "bundler", "~> 2.3", ">= 2.3.24" spec.add_runtime_dependency "ffi-libarchive-binary", "~> 0.3" spec.add_runtime_dependency "libmspack", "~> 0.1" spec.add_runtime_dependency "ruby-ole", "~> 1.0" spec.add_runtime_dependency "rubyzip", "~> 2.3" spec.add_runtime_dependency "thor", "~> 1.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "rubocop", "~> 1.7" spec.add_development_dependency "rubocop-performance", "~> 1.15" spec.metadata["rubygems_mfa_required"] = "false" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
excavate-0.3.2 | excavate.gemspec |