1
0
Fork 0
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:
Roberto Miranda 2017-02-17 15:14:35 -05:00
parent 46bf9eea53
commit bd163bdadf
2 changed files with 2 additions and 2 deletions

View file

@ -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:

View file

@ -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