Skip to content

Commit

Permalink
Allow Puma 6
Browse files Browse the repository at this point in the history
Puma 6 was disallowed in 2022, because back then Rails itself generated
Gemfiles with `'puma', "< 6". This is not the case anymore, in fact,
Rails comes with Rack 3 which instead is incompatible with Puma 5.
  • Loading branch information
mamhoff committed Jan 16, 2024
1 parent be710f3 commit ace1087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gem 'simplecov-cobertura', require: false
gem 'rack', '< 3', require: false
gem 'rake', require: false, groups: [:lint, :release]
gem 'rails-controller-testing', require: false
gem 'puma', '< 6', require: false
gem 'puma', '< 7', require: false
gem 'i18n-tasks', '~> 0.9', require: false
gem 'rspec_junit_formatter', require: false
gem 'yard', require: false
Expand Down

0 comments on commit ace1087

Please sign in to comment.