diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 13:30:11 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 13:30:11 +1100 |
commit | 685353afc7ddfd58ce99249763a2c08d44d4df5c (patch) | |
tree | f28027e05a6991c78bbe0de70a1dea492541471e /railties/guides | |
parent | b9fde2fb757ffdc19bfdf170f20bdfbd10b487f9 (diff) | |
download | rails-685353afc7ddfd58ce99249763a2c08d44d4df5c.tar.gz rails-685353afc7ddfd58ce99249763a2c08d44d4df5c.tar.bz2 rails-685353afc7ddfd58ce99249763a2c08d44d4df5c.zip |
asset_host and asset_path are now set at the global level
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/configuring.textile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 9c3e0c38a8..38226e750a 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -222,10 +222,6 @@ h4. Configuring Action Controller <tt>config.action_controller</tt> includes a number of configuration settings: -* +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_path+ allows you to override the default asset path generation by providing your own instructions. - * +config.action_controller.default_charset+ specifies the default character set for all renders. The default is "utf-8". * +config.action_controller.logger+ accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class, which is then used to log information from Action Controller. Set to nil to disable logging. |