Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove `--skip-yarn` in favor of `--skip-javascript` | bogdanvlviv | 2018-10-22 | 1 | -1/+1 |
| | | | | | | Since #33079 Webpacker the default JavaScript compiler for Rails. Webpacker uses `yarn` so seems like it doesn't make sense for Rails to keep `--skip-yarn` option. | ||||
* | Don't generate yarn's contents in `app:update` task if it's skipped | Tsukuru Tanimichi | 2018-05-16 | 1 | -0/+1 |
| | |||||
* | Don't generate `config/spring.rb` in `app:update` task when spring isn't loaded | Tsukuru Tanimichi | 2018-05-13 | 1 | -0/+1 |
| | |||||
* | Skip `bootsnap` contents in `app:update` task if `bootsnap` is not used | yuuji.yaginuma | 2018-05-07 | 1 | -0/+1 |
| | |||||
* | Add --skip-active-storage and do so automatically when --skip-active-record ↵ | bogdanvlviv | 2017-11-06 | 1 | -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 Allan | 2017-08-14 | 1 | -0/+2 |
| | |||||
* | Do not generate unused components contents in `app:update` task | yuuji.yaginuma | 2017-07-16 | 1 | -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. |