aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/3_2_release_notes.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-01-13 12:40:04 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-01-13 12:40:04 +0530
commit3f70c10300352728418b564b8e425ca95aa33ead (patch)
treea28fb8926b35218bb70186551d85403d36f67fda /railties/guides/source/3_2_release_notes.textile
parent16c18f00fbf1a4835c8e374939e94d7152c3c06c (diff)
parent7b054226060c4f11a450e8171381c06e912f532e (diff)
downloadrails-3f70c10300352728418b564b8e425ca95aa33ead.tar.gz
rails-3f70c10300352728418b564b8e425ca95aa33ead.tar.bz2
rails-3f70c10300352728418b564b8e425ca95aa33ead.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/3_2_release_notes.textile')
-rw-r--r--railties/guides/source/3_2_release_notes.textile4
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/guides/source/3_2_release_notes.textile b/railties/guides/source/3_2_release_notes.textile
index 7a7127819a..ba536ed278 100644
--- a/railties/guides/source/3_2_release_notes.textile
+++ b/railties/guides/source/3_2_release_notes.textile
@@ -118,7 +118,7 @@ config.railties_order = [Blog::Engine, :main_app, :all]
* Update <tt>Rails::Rack::Logger</tt> middleware to apply any tags set in <tt>config.log_tags</tt> to <tt>ActiveSupport::TaggedLogging</tt>. This makes it easy to tag log lines with debug information like subdomain and request id -- both very helpful in debugging multi-user production applications.
-* Default options to +rails new+ can be set in <tt>~/.railsrc</tt>.
+* Default options to +rails new+ can be set in <tt>~/.railsrc</tt>. You can specify extra command-line arguments to be used every time 'rails new' runs in the <tt>.railsrc</tt> configuration file in your home directory.
* Add an alias +d+ for +destroy+. This works for engines too.
@@ -132,6 +132,8 @@ rails g scaffold Post title:string:index author:uniq price:decimal{7,2}
will create indexes for +title+ and +author+ with the latter being an unique index. Some types such as decimal accept custom options. In the example, +price+ will be a decimal column with precision and scale set to 7 and 2 respectively.
+* Turn gem has been removed from default Gemfile.
+
* Remove old plugin generator +rails generate plugin+ in favor of +rails plugin new+ command.
* Remove old <tt>config.paths.app.controller</tt> API in favor of <tt>config.paths["app/controller"]</tt>.