aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-10-20 23:20:44 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-10-20 23:20:44 +0530
commitaf1b5c54cfb74caddd6ffab171d26da9a5c885d1 (patch)
tree2e029d8df73d62c456fce667a647dabf93397863 /railties/guides/source/configuring.textile
parentee9d9fb5fab3cfaa5055e5fb4225b720d3818c94 (diff)
parent274c3fad5087306a64ca91d044756221f5ff862c (diff)
downloadrails-af1b5c54cfb74caddd6ffab171d26da9a5c885d1.tar.gz
rails-af1b5c54cfb74caddd6ffab171d26da9a5c885d1.tar.bz2
rails-af1b5c54cfb74caddd6ffab171d26da9a5c885d1.zip
Merge branch 'master' of github.com:lifo/docrails
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+.