1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Lock to Rack 2.0.x for now to avoid deprecation complaints in rack 2.1

This commit is contained in:
Mike Perham 2020-01-13 15:41:38 -08:00
parent ad56f26ab5
commit 5f211944f3
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ PATH
specs:
sidekiq (6.0.4)
connection_pool (>= 2.2.2)
rack (>= 2.0.0)
rack (~> 2.0.8)
rack-protection (>= 2.0.0)
redis (>= 4.1.0)
@ -105,8 +105,8 @@ GEM
pry-byebug (3.7.0)
byebug (~> 11.0)
pry (~> 0.10)
rack (2.0.7)
rack-protection (2.0.7)
rack (2.0.8)
rack-protection (2.0.8.1)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)

View file

@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
gem.add_dependency "redis", ">= 4.1.0"
gem.add_dependency "connection_pool", ">= 2.2.2"
gem.add_dependency "rack", ">= 2.0.0"
gem.add_dependency "rack", "~> 2.0.8"
gem.add_dependency "rack-protection", ">= 2.0.0"
end