mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Use Puma 3.7.x
ref this commit seems that has not been merged into 3.7 42bec4600c
This commit is contained in:
parent
46bf9eea53
commit
bd163bdadf
2 changed files with 2 additions and 2 deletions
|
@ -190,7 +190,7 @@ module Rails
|
|||
def webserver_gemfile_entry # :doc:
|
||||
return [] if options[:skip_puma]
|
||||
comment = "Use Puma as the app server"
|
||||
GemfileEntry.new("puma", "~> 3.0", comment)
|
||||
GemfileEntry.new("puma", "~> 3.7", comment)
|
||||
end
|
||||
|
||||
def include_all_railties? # :doc:
|
||||
|
|
|
@ -339,7 +339,7 @@ class AppGeneratorTest < Rails::Generators::TestCase
|
|||
|
||||
def test_generator_defaults_to_puma_version
|
||||
run_generator [destination_root]
|
||||
assert_gem "puma", "'~> 3.0'"
|
||||
assert_gem "puma", "'~> 3.7'"
|
||||
end
|
||||
|
||||
def test_generator_if_skip_puma_is_given
|
||||
|
|
Loading…
Reference in a new issue