aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-11-26 14:20:33 +1100
committerRyan Bigg <radarlistener@gmail.com>2010-11-26 14:20:33 +1100
commit3eec4d4f93df70ea9c421df44c23ca0d4595534c (patch)
treed1264f01e4fb3d72ef2cd96bce11449803da2cb5 /railties/guides/source/configuring.textile
parentf1406a905adc77ea719a6f3f85229d43a4766dc5 (diff)
downloadrails-3eec4d4f93df70ea9c421df44c23ca0d4595534c.tar.gz
rails-3eec4d4f93df70ea9c421df44c23ca0d4595534c.tar.bz2
rails-3eec4d4f93df70ea9c421df44c23ca0d4595534c.zip
There is no config.action_controller.optimize_named_routes method for Rails 3
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index b4dc223c71..d6df1e7cbe 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -127,8 +127,6 @@ WARNING: Threadsafe operation is incompatible with the normal workings of develo
* +config.action_controller.request_forgery_protection_token+ sets the token parameter name for RequestForgery. Calling +protect_from_forgery+ sets it to +:authenticity_token+ by default.
-* +config.action_controller.optimise_named_routes+ turns on some optimizations in generating the routing table. It is set to +true+ by default.
-
* +config.action_controller.allow_forgery_protection+ enables or disables CSRF protection. By default this is +false+ in test mode and +true+ in all other modes.
* +config.action_controller.relative_url_root+ can be used to tell Rails that you are deploying to a subdirectory. The default is +ENV['RAILS_RELATIVE_URL_ROOT']+.