1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: This follows an upstream PR to enable support for rubyzip >= 3.0.
The "Zip::File::CREATE" modified by the upstream patch does not exist in the
Debian code.
From: Soren Stoutner <soren@debian.org>
Forwarded: https://github.com/pivotal/LicenseFinder/pull/1063
Last-Update: 2025-12-20
--- a/license_finder.gemspec
+++ b/license_finder.gemspec
@@ -45,7 +45,7 @@ Gem::Specification.new do |s|
s.add_dependency 'bundler'
s.add_dependency 'csv', '~> 3.2'
- s.add_dependency 'rubyzip', '>=1', '<3'
+ s.add_dependency 'rubyzip', '>=1', '<4'
s.add_dependency 'thor', '~> 1.2'
s.add_dependency 'tomlrb', '>= 1.3', '< 2.1'
s.add_dependency 'with_env', '1.1.0'
|