1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

use rails instead of rake

since starting with Rails 5.x(beta) we prefer to use rails as the replacement of rake commands, may be change log will be the same
This commit is contained in:
Gaurav Sharma 2016-02-12 23:12:56 +05:30
parent f7aa4c92a0
commit 33e202d3ae
2 changed files with 3 additions and 3 deletions

View file

@ -42,10 +42,10 @@
## Rails 5.0.0.beta2 (February 01, 2016) ##
* Add `-g` and `-c` options to `bin/rake routes`. These options return the url `name`, `verb` and
* Add `-g` and `-c` options to `bin/rails routes`. These options return the url `name`, `verb` and
`path` field that match the pattern or match a specific controller.
Deprecate `CONTROLLER` env variable in `bin/rake routes`.
Deprecate `CONTROLLER` env variable in `bin/rails routes`.
See #18902.

View file

@ -620,7 +620,7 @@
*Ben Murphy*, *Matthew Draper*
* `bin/rake db:migrate` uses
* `bin/rails db:migrate` uses
`ActiveRecord::Tasks::DatabaseTasks.migrations_paths` instead of
`Migrator.migrations_paths`.