aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorAndy Lindeman <alindeman@gmail.com>2011-10-18 23:45:56 -0300
committerAndy Lindeman <alindeman@gmail.com>2011-10-18 23:45:56 -0300
commit044e6ac245c24b91f7f815e2155bb7ac030ce831 (patch)
treeab72583e3a737e99498e4ce10855181e9962347c /railties/guides/source/configuring.textile
parent86919a6da17e164e6bb9e1f355052e552929141e (diff)
downloadrails-044e6ac245c24b91f7f815e2155bb7ac030ce831.tar.gz
rails-044e6ac245c24b91f7f815e2155bb7ac030ce831.tar.bz2
rails-044e6ac245c24b91f7f815e2155bb7ac030ce831.zip
Fixes the defaults for config.cache_classes
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index baf944cf8d..58b92e7f9e 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -64,7 +64,7 @@ NOTE. The +config.asset_path+ configuration is ignored if the asset pipeline is
* +config.autoload_paths+ accepts an array of paths from which Rails will autoload constants. Default is all directories under +app+.
-* +config.cache_classes+ controls whether or not application classes and modules should be reloaded on each request. Defaults to true in development mode, and false in test and production modes. Can also be enabled with +threadsafe!+.
+* +config.cache_classes+ controls whether or not application classes and modules should be reloaded on each request. Defaults to false in development mode, and true in test and production modes. Can also be enabled with +threadsafe!+.
* +config.action_view.cache_template_loading+ controls whether or not templates should be reloaded on each request. Defaults to whatever is set for +config.cache_classes+.