diff options
author | José Valim <jose.valim@gmail.com> | 2011-06-11 08:04:06 -0700 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-06-11 08:04:06 -0700 |
commit | 28f2b981fc0899e35ed0180376bddaa1b5bcaae8 (patch) | |
tree | 0ca44e76a1d1d8b989d8ab62ad73ccb790769cd2 /railties/guides/source/configuring.textile | |
parent | 1829dd91757c5ac337b5e11323c693e75bf2f771 (diff) | |
parent | 9b305983e3518093f3b393a254f296ca2be29968 (diff) | |
download | rails-28f2b981fc0899e35ed0180376bddaa1b5bcaae8.tar.gz rails-28f2b981fc0899e35ed0180376bddaa1b5bcaae8.tar.bz2 rails-28f2b981fc0899e35ed0180376bddaa1b5bcaae8.zip |
Merge pull request #549 from dlee/utf8_enforcer
Utf8 enforcer param customization
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 a4cc62c117..80de36070d 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -330,7 +330,7 @@ And can reference in the view with the following code: <%= stylesheet_link_tag :special %> </ruby> -* +ActionView::Helpers::AssetTagHelper::AssetPaths.cache_asset_ids+ With the cache enabled, the asset tag helper methods will make fewer expensive file system calls (the default implementation checks the file system timestamp). However this prevents you from modifying any asset files while the server is running. +* +config.action_view.cache_asset_ids+ With the cache enabled, the asset tag helper methods will make fewer expensive file system calls (the default implementation checks the file system timestamp). However this prevents you from modifying any asset files while the server is running. h4. Configuring Action Mailer |