diff options
author | wycats <wycats@gmail.com> | 2010-03-28 18:45:52 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-03-28 18:46:18 -0700 |
commit | 201e8986b15f4d815355e0ca96e02cf16dba9372 (patch) | |
tree | 4160f1a01034b520c0968b16557b50c220ae0c86 /railties/guides/source/configuring.textile | |
parent | 49bc6a249e2a200216f8a96c36093a2c7a471c9b (diff) | |
download | rails-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/guides/source/configuring.textile')
-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 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. |