Skip to content

Commit 1accda6

Browse files
committed
fixup
1 parent 4ec3765 commit 1accda6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Gemfile-rails-dependencies

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +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-
gem 'puma'
17+
if RUBY_VERSION.to_f < 2.7
18+
gem 'puma', '< 6.0.0'
19+
else
20+
gem 'puma'
21+
end
1822

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

0 commit comments

Comments
 (0)