diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-12-03 11:57:42 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-12-03 11:57:42 +1100 |
commit | 2e021ef477dd7d26ca6183b4e3113be3fcc6a5e1 (patch) | |
tree | 1da20628b8c3def933fe0a2cf1fb1dd70b730056 | |
parent | e8ee2ba6cbbbc892a9db53420b8f0451a00388b0 (diff) | |
download | rails-2e021ef477dd7d26ca6183b4e3113be3fcc6a5e1.tar.gz rails-2e021ef477dd7d26ca6183b4e3113be3fcc6a5e1.tar.bz2 rails-2e021ef477dd7d26ca6183b4e3113be3fcc6a5e1.zip |
Clarify that preload_frameworks defaults to nil
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 7e40cad040..3ea9db2373 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -91,7 +91,7 @@ h4. Rails General Configuration * +config.plugins+ accepts the list of plugins to load. If this is set to nil, all plugins will be loaded. If this is set to [], no plugins will be loaded. Otherwise, plugins will be loaded in the order specified. -* +config.preload_frameworks+ enables or disables preloading all frameworks at startup. Can also be enabled with +threadsafe!+. +* +config.preload_frameworks+ enables or disables preloading all frameworks at startup. Can also be enabled with +threadsafe!+. Defaults to +nil+, so is disabled. * +config.reload_plugins+ enables or disables plugin reloading. |