aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-11-29 11:46:15 +1100
committerRyan Bigg <radarlistener@gmail.com>2010-11-29 11:46:15 +1100
commitf03aa05cee96f0a0e09af0e9244a9cf9fcd1cf6f (patch)
treeecce7702a225d57f9e0d74ca4fc395e47506eb12 /railties/guides/source/configuring.textile
parentd7ac3992d53e48c753b00c4e54ce24f890ca7974 (diff)
downloadrails-f03aa05cee96f0a0e09af0e9244a9cf9fcd1cf6f.tar.gz
rails-f03aa05cee96f0a0e09af0e9244a9cf9fcd1cf6f.tar.bz2
rails-f03aa05cee96f0a0e09af0e9244a9cf9fcd1cf6f.zip
Change coloriz_logging description to follow the standard for this guide
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r--railties/guides/source/configuring.textile3
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index b87bd429de..214674ef36 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -59,7 +59,8 @@ h4. Rails General Configuration
* +config.cache_store+ configures which cache store to use for Rails caching. Options include +:memory_store+, +:file_store+, +:mem_cache_store+ or the name of your own custom class.
-* +config.colorize_logging+ (true by default) specifies whether or not to use ANSI color codes when logging information.
+* +config.colorize_logging+ specifies whether or not to use ANSI color codes when logging information. Defaults to _true_.
+
* +config.dependency_loading+ enables or disables dependency loading during the request cycle. Setting dependency_loading to _true_ will allow new classes to be loaded during a request and setting it to _false_ will disable this behavior. Can also be enabled with +threadsafe!+.