diff options
author | Tim Harper <timcharper@gmail.com> | 2008-10-20 13:21:59 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-10-20 13:21:59 -0500 |
commit | fcb45e5ec3c8ab7b11391c0639609918876ddbb2 (patch) | |
tree | 79b101edc15fcb3df2a9a0bda2917bec0514e901 /actionpack/lib | |
parent | 1082cba4417100552a879c0bc0d415f9944767f8 (diff) | |
download | rails-fcb45e5ec3c8ab7b11391c0639609918876ddbb2.tar.gz rails-fcb45e5ec3c8ab7b11391c0639609918876ddbb2.tar.bz2 rails-fcb45e5ec3c8ab7b11391c0639609918876ddbb2.zip |
Ensure ActionView::Helpers::AssetTagHelper::AssetTag::Cache is cleared before loading so changes to asset files are picked up by the broswer [#1233 state:resolved]
Signed-off-by: Joshua Peek <josh@joshpeek.com>
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/dispatcher.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/dispatcher.rb b/actionpack/lib/action_controller/dispatcher.rb index 90c8400c11..28f8ce3d53 100644 --- a/actionpack/lib/action_controller/dispatcher.rb +++ b/actionpack/lib/action_controller/dispatcher.rb @@ -39,7 +39,7 @@ module ActionController # Add a preparation callback. Preparation callbacks are run before every # request in development mode, and before the first request in production # mode. - # + # # An optional identifier may be supplied for the callback. If provided, # to_prepare may be called again with the same identifier to replace the # existing callback. Passing an identifier is a suggested practice if the @@ -144,6 +144,7 @@ module ActionController Routing::Routes.reload ActionController::Base.view_paths.reload! + ActionView::Helpers::AssetTagHelper::AssetTag::Cache.clear end # Cleanup the application by clearing out loaded classes so they can |