Skip to content

Commit

Permalink
Merge pull request #2156 from newrelic/count_rugen
Browse files Browse the repository at this point in the history
CI: require Rack 3 for Ruby 3.3+
  • Loading branch information
fallwith authored Aug 10, 2023
2 parents 62ee025 + c0d6e63 commit bedd758
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 bedd758

Please sign in to comment.