Bring back `puma.rb` to target of `app:update`

This is a partial revert of #41083.

`puma.rb` may update by users, but  Rails has improved `puma.rb` sometimes.
For example, 06d614ada9 and f719787c58.

To allow users to know those improvements, I think we should update
`puma.rb` by `app:update`.
This commit is contained in:
Yuji Yaginuma 2024-06-11 14:50:58 +09:00
parent 51f81267f8
commit e4f8604602
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ module Rails
template "application.rb"
template "environment.rb"
template "cable.yml" unless options[:update] || options[:skip_action_cable]
template "puma.rb" unless options[:update]
template "puma.rb"
template "storage.yml" unless options[:update] || skip_active_storage?
directory "environments"