Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use tt in doc for railties [skip ci] | Yoshiyuki Hirano | 2017-08-27 | 2 | -5/+5 |
| | |||||
* | Adding frozen_string_literal pragma to Railties. | Pat Allan | 2017-08-14 | 4 | -0/+8 |
| | |||||
* | Railties updates for frozen string literals. | Pat Allan | 2017-08-14 | 1 | -1/+1 |
| | |||||
* | Properly expand the environment's name | Robin Dupret | 2017-07-16 | 1 | -1/+6 |
| | | | | | | | | | Running the `console` and `dbconsole` commands with a regular argument as the environment's name automatically expand it to match an existing environment (e.g. dev for development). This feature wasn't available using the `--environment` (a.k.a `-e`) option. | ||||
* | Deprecate environment as an argument for dbconsole and console | Robin Dupret | 2017-07-16 | 1 | -0/+6 |
| | | | | | | People should rather rely on the `-e` or `--environment` options to specify in which environment they want to work. This will allow us to specify the connection to pick as a regular argument in the future. | ||||
* | [Railties] require => require_relative | Akira Matsuda | 2017-07-01 | 1 | -1/+1 |
| | |||||
* | Define path with __dir__ | bogdanvlviv | 2017-05-23 | 1 | -1/+1 |
| | | | | | | ".. with __dir__ we can restore order in the Universe." - by @fxn Related to 5b8738c2df003a96f0e490c43559747618d10f5f | ||||
* | Show correct commands in help | yuuji.yaginuma | 2017-03-03 | 1 | -1/+7 |
| | | | | | Currently rails' help shows only namespace. However, the secrets command needs to specify command. Therefore, I fixed the command to display in help. | ||||
* | Revert "Revert "Add encrypted secrets"" | Kasper Timm Hansen | 2017-02-23 | 1 | -2/+8 |
| | |||||
* | Revert "Add encrypted secrets" (#28127) | David Heinemeier Hansson | 2017-02-23 | 1 | -8/+2 |
| | |||||
* | Add encrypted secrets (#28038) | Kasper Timm Hansen | 2017-02-23 | 1 | -2/+8 |
| | |||||
* | Share the common implementation between apps and engines. | Kasper Timm Hansen | 2017-02-18 | 1 | -12/+7 |
| | |||||
* | allow to pass describe option to rake | yuuji.yaginuma | 2017-01-17 | 1 | -1/+1 |
| | | | | | | Since `Thor::HELP_MAPPINGS` contains `-D`, so `bin/rails -D` show rails's help. But, in Rails 5.0.1, `bin/rails -D` show the description of rake task. I think that it is better to have the same behavior. | ||||
* | make all rails commands work in engine | yuuji.yaginuma | 2017-01-09 | 1 | -0/+5 |
| | | | | | | | | Currently, all rails commands can be executed in engine, but `server`, `console`, `dbconsole` and `runner` do not work. This make all rails commands work in engine. Related to #22588 | ||||
* | Match Thor's `desc` signature. | Kasper Timm Hansen | 2016-12-31 | 1 | -1/+1 |
| | | | | It can also take an options hash. | ||||
* | Prevent command name being printed twice. | Kasper Timm Hansen | 2016-12-31 | 1 | -0/+8 |
| | | | | | | | | | Thor would inadvertantly duplicate the command usage because of the help method in a command class. Fixes #26664. [ Yuji Yaginuma & Kasper Timm Hansen ] | ||||
* | Privatize unneededly protected methods in Railties | Akira Matsuda | 2016-12-25 | 1 | -6/+6 |
| | |||||
* | Add more rubocop rules about whitespaces | Rafael Mendonça França | 2016-10-29 | 1 | -2/+2 |
| | |||||
* | Apply Rafaels review fixes. | Kasper Timm Hansen | 2016-09-25 | 1 | -1/+1 |
| | |||||
* | Fix console tests. | Kasper Timm Hansen | 2016-09-25 | 1 | -0/+2 |
| | |||||
* | Per Dr. Eileen's orders :) | Kasper Timm Hansen | 2016-09-25 | 1 | -1/+1 |
| | | | | Prescribed some review fixes for myself! | ||||
* | Simplify auxiliary command files directory finding. | Kasper Timm Hansen | 2016-09-25 | 1 | -1/+1 |
| | | | | | Still vulnerable to different file structures. We likely want something more robust when we tackle in app commands. | ||||
* | Run engine commands through command infrastructure. | Kasper Timm Hansen | 2016-09-25 | 2 | -6/+35 |
| | |||||
* | Initial command structure. | Kasper Timm Hansen | 2016-09-25 | 4 | -0/+303 |