aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-03-28 18:45:52 -0700
committerwycats <wycats@gmail.com>2010-03-28 18:46:18 -0700
commit201e8986b15f4d815355e0ca96e02cf16dba9372 (patch)
tree4160f1a01034b520c0968b16557b50c220ae0c86 /railties
parent49bc6a249e2a200216f8a96c36093a2c7a471c9b (diff)
downloadrails-201e8986b15f4d815355e0ca96e02cf16dba9372.tar.gz
rails-201e8986b15f4d815355e0ca96e02cf16dba9372.tar.bz2
rails-201e8986b15f4d815355e0ca96e02cf16dba9372.zip
Updated asset_template_path to asset_path and have it also support a String [#4247 state:resolved]
Diffstat (limited to 'railties')
-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 e438d4cc0a..e35126fc5a 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -133,7 +133,7 @@ h4. Configuring Action Controller
* +config.action_controller.asset_host+ provides a string that is prepended to all of the URL-generating helpers in +AssetHelper+. This is designed to allow moving all javascript, CSS, and image files to a separate asset host.
-* +config.action_controller.asset_template_path+ allows you to override the default asset path generation by providing your own instructions.
+* +config.action_controller.asset_path+ allows you to override the default asset path generation by providing your own instructions.
* +config.action_controller.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?+ to specify which requests should provide debugging information on errors.