Skip to content

Commit 85ee15f

Browse files
committed
Move rack back to 2.2.x
This is the last version which is known to have working implementations in production, and compatibility tests currently fail with Rack 3.0 so let's move this forward separately as an independent chunk of work. Signed-off-by: Chad Wilson <[email protected]>
1 parent b5c44cf commit 85ee15f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ group :default do
44
if rack_version = ENV['RACK_VERSION']
55
gem 'rack', rack_version
66
else
7-
gem 'rack'
7+
gem 'rack', '< 3.0'
88
end
99
end
1010

@@ -14,4 +14,3 @@ end
1414

1515
gem 'rake', '~> 13.2', :group => :test, :require => nil
1616
gem 'rspec', :group => :test
17-
gem 'jruby-openssl', :group => :test if JRUBY_VERSION < '1.7.0'

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ GEM
55
bundler
66
rake
77
diff-lcs (1.5.1)
8-
rack (3.0.11)
8+
rack (2.2.9)
99
rake (13.2.1)
1010
rspec (3.13.0)
1111
rspec-core (~> 3.13.0)
1212
rspec-expectations (~> 3.13.0)
1313
rspec-mocks (~> 3.13.0)
1414
rspec-core (3.13.0)
1515
rspec-support (~> 3.13.0)
16-
rspec-expectations (3.13.0)
16+
rspec-expectations (3.13.1)
1717
diff-lcs (>= 1.2.0, < 2.0)
1818
rspec-support (~> 3.13.0)
1919
rspec-mocks (3.13.1)
@@ -26,7 +26,7 @@ PLATFORMS
2626

2727
DEPENDENCIES
2828
appraisal (< 1.0)
29-
rack
29+
rack (< 3.0)
3030
rake (~> 13.2)
3131
rspec
3232

0 commit comments

Comments
 (0)