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, 06d614ada9e4609ff83659e842f48af3232a03a5 and f719787c582839fd2fcd886d70b43da3ddad2ceb.

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

@ -128,7 +128,7 @@ def config
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"