Skip to content

Commit b5133d9

Browse files
committedJun 28, 2023
Unpin puma on supported Rubies
1 parent cb8776c commit b5133d9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎Gemfile-rails-dependencies

+5-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ end
1414
# sqlite3 is an optional, unspecified, dependency and Rails 6.0 only supports `~> 1.4`
1515
gem 'sqlite3', '~> 1.4', platforms: [:ruby]
1616

17-
# Due to capybara strings issue
18-
gem 'puma', '< 6.0.0'
17+
if RUBY_VERSION.to_f < 2.7
18+
gem 'puma', '< 6.0.0'
19+
else
20+
gem 'puma'
21+
end
1922

2023
case version = ENV['RAILS_VERSION'] || (File.exist?(version_file) && File.read(version_file).chomp) || ''
2124
when /main/

0 commit comments

Comments
 (0)
Please sign in to comment.