aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-11-29 12:05:23 +1100
committerRyan Bigg <radarlistener@gmail.com>2010-11-29 12:05:23 +1100
commit945d714e75701890bf68b70c08d0e4836a1b3ffb (patch)
tree01cf124873b69024d32a34b0b0389371c44c6557
parent0d32572275f066099e472f37ca2e6262e8c07bf5 (diff)
downloadrails-945d714e75701890bf68b70c08d0e4836a1b3ffb.tar.gz
rails-945d714e75701890bf68b70c08d0e4836a1b3ffb.tar.bz2
rails-945d714e75701890bf68b70c08d0e4836a1b3ffb.zip
Mention controller_paths in the config guide
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index 6272d81d7f..891c4f1c4d 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -63,6 +63,8 @@ h4. Rails General Configuration
* +config.consider_all_requests_local+ is generally set to +true+ during development and +false+ during production; if it is set to +true+, then any error will cause detailed debugging information to be dumped in the HTTP response. For finer-grained control, set this to +false+ and implement +local_request?+ in controllers to specify which requests should provide debugging information on errors.
+* +config.controller_paths+ configures where Rails can find controllers for this application.
+
* +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!+.
* +config.eager_load_paths+ accepts an array of paths from which Rails will eager load on boot if cache classes is enabled. All elements of this array must also be in +load_paths+.