aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/app_updater.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add --skip-active-storage and do so automatically when --skip-active-record ↵bogdanvlviv2017-11-061-5/+6
| | | | | | | | | | | | is used Closes #30102 Revert part 787fe90dc0a7c5b91bb5af51f2858ea8c4676268 --skip-active-storage pass throughs `rails plugin new` Add changelog entry about default initialization of Active Storage
* Adding frozen_string_literal pragma to Railties.Pat Allan2017-08-141-0/+2
|
* Do not generate unused components contents in `app:update` taskyuuji.yaginuma2017-07-161-0/+31
Currently, `app:update` generates all contents regardless of the component using in application. For example, even if not using Action Cable, `app:update` will generate a contents related to Action Cable. This is a little inconvenient. This PR checks the existence of the component and does not generate unnecessary contents. Can not check all options in this way. However, it will be able to prevent the generation of unnecessary files.