Skip to content

Commit

Permalink
Remove upper bound of rack
Browse files Browse the repository at this point in the history
Allow users to install any version and try to see if Rails is compatible.
  • Loading branch information
rafaelfranca committed Jan 25, 2023
1 parent 896c7fa commit 859b526
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ PATH
actionpack (7.1.0.alpha)
actionview (= 7.1.0.alpha)
activesupport (= 7.1.0.alpha)
rack (~> 2.0, >= 2.2.4)
rack (>= 2.2.4)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
Expand Down Expand Up @@ -556,6 +556,7 @@ DEPENDENCIES
puma (>= 5.0.3)
queue_classic (>= 4.0.0)
racc (>= 1.4.6)
rack (~> 2.0)
rack-cache (~> 1.2)
rails!
rake (>= 13)
Expand Down
2 changes: 1 addition & 1 deletion actionpack/actionpack.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Gem::Specification.new do |s|

s.add_dependency "activesupport", version

s.add_dependency "rack", "< 4", ">= 2.2.4"
s.add_dependency "rack", ">= 2.2.4"
s.add_dependency "rack-test", ">= 0.6.3"
s.add_dependency "rails-html-sanitizer", "~> 1.0", ">= 1.2.0"
s.add_dependency "rails-dom-testing", "~> 2.0"
Expand Down

0 comments on commit 859b526

Please sign in to comment.