Skip to content

Commit

Permalink
CI: require Rack 3 for Ruby 3.3+
Browse files Browse the repository at this point in the history
Stop testing Rack 2 with Ruby 3.3+ (we previously stopped testing Rack 1
with Ruby 3.2+)
  • Loading branch information
fallwith committed Aug 10, 2023
1 parent 62ee025 commit c0d6e63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/multiverse/suites/rack/Envfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ gemfile <<~RB
gem 'rack-test'
RB

gemfile <<~RB
gemfile <<~RB if RUBY_VERSION < '3.3.0' # require Rack v3+ for Ruby 3.3+
gem 'rack', '2.2.4'
gem 'rack-test'
RB

gemfile <<~RB if RUBY_VERSION < '3.2.0'
gemfile <<~RB if RUBY_VERSION < '3.2.0' # require Rack v2+ for Ruby 3.2+
gem 'rack', '1.6.13'
gem 'rack-test'
RB

0 comments on commit c0d6e63

Please sign in to comment.