Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
11 changes: 5 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,23 @@ 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)

GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.7)
activesupport (7.0.4.2)
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)
concurrent-ruby (1.1.10)
concurrent-ruby (1.2.0)
diff-lcs (1.5.0)
docile (1.4.0)
dry-configurable (0.16.1)
Expand Down Expand Up @@ -114,7 +113,7 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
tzinfo (2.0.5)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.4.2)
zeitwerk (2.6.6)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion use_cases.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down