mirror of https://github.com/rails/rails
Remove upper bound of rack
Allow users to install any version and try to see if Rails is compatible.
This commit is contained in:
parent
896c7faedf
commit
859b526c5b
|
@ -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)
|
||||
|
@ -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)
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue