diff --git a/Gemfile b/Gemfile index 140905a..8ea1c8a 100644 --- a/Gemfile +++ b/Gemfile @@ -5,7 +5,7 @@ source "https://rubygems.org" # Specify your gem's dependencies in use_cases.gemspec gemspec -gem "activesupport", "~> 6.1.0" +gem "activesupport", "~> 7.0.4" gem "dry-matcher", "~> 0.8.0" gem "dry-monads", "~> 1.0.0" gem "dry-validation", "~> 1.8.0" diff --git a/Gemfile.lock b/Gemfile.lock index 9512603..5db1a97 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: use_cases (3.0.3) - activesupport (~> 6.1, >= 6.1.0) + activesupport (>= 6.1, < 8.0) dry-matcher (~> 0.8, >= 0.5.0) dry-monads (~> 1.0, >= 1.0.0) dry-validation (~> 1.8, >= 1.8.0) @@ -10,12 +10,11 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7) + activesupport (7.0.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) - zeitwerk (~> 2.3) ast (2.4.2) byebug (11.1.3) coderay (1.1.3) @@ -123,7 +122,7 @@ PLATFORMS ruby DEPENDENCIES - activesupport (~> 6.1.0) + activesupport (~> 7.0.4) byebug (~> 11.1, >= 11.1.3) dry-matcher (~> 0.8.0) dry-monads (~> 1.0.0) diff --git a/use_cases.gemspec b/use_cases.gemspec index 084e788..82535a8 100644 --- a/use_cases.gemspec +++ b/use_cases.gemspec @@ -30,7 +30,7 @@ Gem::Specification.new do |spec| # For more information and examples about making a new gem, checkout our # guide at: https://bundler.io/guides/creating_gem.html - spec.add_dependency "activesupport", "~> 6.1", ">= 6.1.0" + spec.add_dependency "activesupport", ">= 6.1", "< 8.0" spec.add_dependency "dry-matcher", "~> 0.8", ">= 0.5.0" spec.add_dependency "dry-monads", "~> 1.0", ">= 1.0.0" spec.add_dependency "dry-validation", "~> 1.8", ">= 1.8.0"