1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
puma in the archive is 6.x
Forwarded: not-needed
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -206,7 +206,7 @@
def web_server_gemfile_entry # :doc:
return [] if options[:skip_puma]
comment = "Use Puma as the app server"
- GemfileEntry.new("puma", "~> 5.0", comment)
+ GemfileEntry.new("puma", "~> 6.0", comment)
end
def include_all_railties? # :doc:
--- a/railties/test/generators/app_generator_test.rb
+++ b/railties/test/generators/app_generator_test.rb
@@ -602,7 +602,7 @@
def test_generator_defaults_to_puma_version
run_generator [destination_root]
- assert_gem "puma", "'~> 5.0'"
+ assert_gem "puma", "'~> 6.0'"
end
def test_generator_if_skip_puma_is_given
|