- Fence some commands, options, gems, etc. with quotes

- Added missing config to complete config names
- Fixed route generators changelog grammar.
- rake:stats => rake stats
- Fixed grammar of assert_file change
- Make sure we end all sentences

[ci skip]
This commit is contained in:
Vipul A M 2016-04-10 22:43:47 +05:30
parent 35b19cd1eb
commit 3d52f6ce61
1 changed files with 18 additions and 18 deletions

View File

@ -38,7 +38,7 @@
system monitor and the async plugin for spring.
* The Gemfiles of new applications include spring-watcher-listen on Linux and
Mac OS X (unless --skip-spring).
Mac OS X (unless `--skip-spring`).
*Xavier Noria*
@ -113,7 +113,7 @@
*Chuck Callebs*
* Allow use of minitest-rails gem with Rails test runner.
* Allow use of `minitest-rails` gem with Rails test runner.
Fixes #22455.
@ -126,13 +126,13 @@
*Yuji Yaginuma*
* Make `static_index` part of the `config.public_file_server` config and
call it `public_file_server.index_name`.
call it `config.public_file_server.index_name`.
*Yuki Nishijima*
* Deprecate `serve_static_files` in favor of `public_file_server.enabled`.
* Deprecate `config.serve_static_files` in favor of `config.public_file_server.enabled`.
Unifies the static asset options under `public_file_server`.
Unifies the static asset options under `config.public_file_server`.
To upgrade, replace occurrences of:
@ -170,8 +170,8 @@
*Yuki Nishijima*
* Route generator should be idempotent
running generators several times no longer require you to cleanup routes.rb
* Route generators are now idempotent.
Running generators several times no longer require you to cleanup routes.rb.
*Thiago Pinto*
@ -179,7 +179,7 @@
*Simon Eskildsen*
* Allow rake:stats to account for rake tasks in lib/tasks
* Allow `rake stats` to account for rake tasks in lib/tasks.
*Kevin Deisz*
@ -189,7 +189,7 @@
*James Kerr*
* Add fail fast to `bin/rails test`
* Add fail fast to `bin/rails test`.
Adding `--fail-fast` or `-f` when running tests will interrupt the run on
the first failure:
@ -221,7 +221,7 @@
*Kasper Timm Hansen*
* Add inline output to `bin/rails test`
* Add inline output to `bin/rails test`.
Any failures or errors (and skips if running in verbose mode) are output
during a test run:
@ -252,7 +252,7 @@
*Kasper Timm Hansen*
* Fix displaying mailer previews on non local requests when config
`action_mailer.show_previews` is set
`config.action_mailer.show_previews` is set.
*Wojciech Wnętrzak*
@ -283,14 +283,14 @@
*Ersin Akinci*
* Make enabling or disabling caching in development mode possible with
rake dev:cache.
`rake dev:cache`.
Running rake dev:cache will create or remove tmp/caching-dev.txt. When this
file exists config.action_controller.perform_caching will be set to true in
Running `rake dev:cache` will create or remove tmp/caching-dev.txt. When this
file exists `config.action_controller.perform_caching` will be set to true in
config/environments/development.rb.
Additionally, a server can be started with either --dev-caching or
--no-dev-caching included to toggle caching on startup.
Additionally, a server can be started with either `--dev-caching` or
`--no-dev-caching` included to toggle caching on startup.
*Jussi Mertanen*, *Chuck Callebs*
@ -303,11 +303,11 @@
*Yuji Yaginuma*
* Adding support for passing a block to the `add_source` action of a custom generator
* Adding support for passing a block to the `add_source` action of a custom generator.
*Mike Dalton*, *Hirofumi Wakasugi*
* `assert_file` understands paths with special characters
* `assert_file` now understands paths with special characters
(eg. `v0.1.4~alpha+nightly`).
*Diego Carrion*