| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
Without this, `dbconsole` raises an error as follwing:
```
RuntimeError: can't modify frozen String
railties/lib/rails/commands/dbconsole/dbconsole_command.rb:79:in `start'
```
|
|\
| |
| |
| |
| | |
yhirano55/fix_indentation_in_secrets_yaml_template
Fix indentation in the template for secrets
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Since cb5af0d7, some classes that are under Active Storage are now
part of the API site.
However, these classes aren't nested under a definition of the
`ActiveStorage` module but rather name-spaced under it like
`ActiveStorage::Foo`.
Thus, these classes are present both under the ActiveStorage label
and at the root of the site's sidebar so we have to strip out
duplicates.
[ci skip]
|
| | |
|
|\ \
| | |
| | | |
Use REDIS_URL var for Action Cable config template
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Fix spaces in the comment block [ci skip]
|
| |/ |
|
|\ \
| | |
| | | |
Remove frozen_string_literal magic comment from templates
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Update MIT licenses link [ci skip]
|
| |/ |
|
|/ |
|
|\
| |
| | |
Make `restart` and `dev:cache` tasks work when customizing pid file path
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Originally, it hard-coded pid file path. It can not be removed when customizing
pid file path.
But rake task can not get pid file path. Therefore, do not remove file in rake
task, makes it possible to judge whether it is restart from the argument of the
command and removes the file in server command.
Fixes #29306
|
|/
|
|
| |
Since 0d72489, this file does not use `method_source`.
|
|
|
|
| |
`SharedGeneratorTests`
|
|\
| |
| | |
Remove unused `action` arg for `generate_routing_code`
|
| | |
|
| |
| |
| |
| | |
And enable `context_dependent` of Style/BracesAroundHashParameters cop.
|
| |
| |
| |
| | |
Test case for #30045
|
| |
| |
| |
| |
| | |
Add SharedGeneratorTests#application_path
This method will help to DRY in files app_generator_test.rb, plugin_generator_test.rb
|
|\ \
| | |
| | | |
Fix typo for api_app_generator_test
|
| | | |
|
|/ /
| |
| |
| |
| |
| | |
Add missing backticks
Add missing *
Add missing .
|
|/ |
|
|\
| |
| | |
Refactor `--api` option of the app generator
|
| |
| |
| |
| |
| | |
It can't use JavaScript in api mode.
Action cable should be disabled by default.
|
|\ \
| | |
| | | |
Refactor max-age seconds
|
| |/ |
|
|\ \
| | |
| | | |
Omit additional removing `config/cable.yml`
|
| |/
| |
| |
| | |
`config/cable.yml` is never created if `--skip-action-cable` is given.
|
|\ \
| | |
| | | |
Improve plugin generator codebase
|
| | |
| | |
| | |
| | | |
`:force` is setted inside the method `generate_test_dummy`
|
| |/ |
|
|\ \
| | |
| | |
| | | |
Optimize routes indentation
|
| |/ |
|
|\ \
| | |
| | | |
Railties updates for frozen string literals.
|
| | | |
|
| | | |
|
| | | |
|
| |/ |
|
|\ \
| |/
|/| |
Show minitest options in test runner help
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Since #29572, minitest options are available but are no longer showed
in help.
This fixed to show minitest option in help as with Rails 5.1.2.
**before**
```
./bin/rails t --help
You can run a single test by appending a line number to a filename:
bin/rails test test/models/user_test.rb:27
You can run multiple files and directories at the same time:
bin/rails test test/controllers test/integration/login_test.rb
By default test failures and errors are reported inline during a run.
Rails options:
-w, --warnings Run with Ruby warnings enabled
-e, --environment Run tests in the ENV environment
-b, --backtrace Show the complete backtrace
-d, --defer-output Output test failures and errors after the test run
-f, --fail-fast Abort test run on first failure or error
-c, --[no-]color Enable color in the output
```
**after**
```
./bin/rails t --help
You can run a single test by appending a line number to a filename:
bin/rails test test/models/user_test.rb:27
You can run multiple files and directories at the same time:
bin/rails test test/controllers test/integration/login_test.rb
By default test failures and errors are reported inline during a run.
minitest options:
-h, --help Display this help.
-s, --seed SEED Sets random seed. Also via env. Eg: SEED=n rake
-v, --verbose Verbose. Show progress processing files.
-n, --name PATTERN Filter run on /regexp/ or string.
--exclude PATTERN Exclude /regexp/ or string from run.
Known extensions: rails, pride
-w, --warnings Run with Ruby warnings enabled
-e, --environment Run tests in the ENV environment
-b, --backtrace Show the complete backtrace
-d, --defer-output Output test failures and errors after the test run
-f, --fail-fast Abort test run on first failure or error
-c, --[no-]color Enable color in the output
-p, --pride Pride. Show your testing pride!
```
|
|\ \
| | |
| | |
| | | |
Optimize indentation for generator actions
|
| | | |
|
|\ \ \
| | | |
| | | | |
Eager load controller actions to reduce response time of the first request
|