diff options
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r-- | railties/CHANGELOG | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index fc9277bd28..0b67479742 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,13 @@ *Edge* +* Added "rake about" as a replacement for script/about [DHH] + +* Removed all the default commands in script/* and replaced them with script/rails and a rails command that'll act the same when run from within the app [DHH]. Example: + + ./script/generate scaffold post title:string can now be called as rails g scaffold post title:string + + Run rails --help inside an app for more help. + * Removed config/initializers/new_rails_defaults.rb as all frameworks now follow the settings from it [DHH] * Set config.time_zone to UTC by default [DHH] |