aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-02-02 15:50:56 -0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-02-02 15:50:56 -0800
commitd236827881d119fb9ad25c81ce8e7756f1966823 (patch)
treedffcd371f7060298ecbce80b95e0596a564c6404 /railties/CHANGELOG
parent144f41ed9bf9d32f902531da0d3cf2a12d3a6b2b (diff)
downloadrails-d236827881d119fb9ad25c81ce8e7756f1966823.tar.gz
rails-d236827881d119fb9ad25c81ce8e7756f1966823.tar.bz2
rails-d236827881d119fb9ad25c81ce8e7756f1966823.zip
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]
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG6
1 files changed, 6 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index fc9277bd28..4176d7fcad 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,11 @@
*Edge*
+* 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]