diff --git a/Gemfile.lock b/Gemfile.lock index 76acca8..1f27cc0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ PATH dry-schema (~> 1.6.0) dry-struct (~> 1.3.0) dry-validation (= 1.5.1) - git (~> 1.8.1) + git (>= 1.8.1, < 1.14.0) mustache (~> 1.1.1) vseries (~> 0.1.0) @@ -24,6 +24,8 @@ GEM minitest (>= 5.1) tzinfo (~> 2.0) zeitwerk (~> 2.3) + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) ast (2.4.1) byebug (11.1.1) concurrent-ruby (1.1.7) @@ -72,7 +74,8 @@ GEM dry-schema (~> 1.5) factory_bot (6.1.0) activesupport (>= 5.0.0) - git (1.8.1) + git (1.13.1) + addressable (~> 2.8) rchardet (~> 1.8) i18n (1.8.7) concurrent-ruby (~> 1.0) @@ -83,6 +86,7 @@ GEM parallel (1.19.2) parser (2.7.1.4) ast (~> 2.4.1) + public_suffix (5.0.1) rainbow (3.0.0) rake (13.0.6) rchardet (1.8.0) diff --git a/djin.gemspec b/djin.gemspec index 587f05e..165ba67 100644 --- a/djin.gemspec +++ b/djin.gemspec @@ -36,7 +36,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'dry-schema', '~> 1.6.0' spec.add_dependency 'dry-struct', '~> 1.3.0' spec.add_dependency 'dry-validation', '= 1.5.1' - spec.add_dependency 'git', '~> 1.8.1' + spec.add_dependency 'git', '>= 1.8.1', '< 1.14.0' spec.add_dependency 'mustache', '~> 1.1.1' spec.add_dependency 'vseries', '~> 0.1.0' spec.add_development_dependency 'bundler', '~> 2.0'