From: Tom Hughes Date: Fri, 26 Jun 2009 13:08:36 +0000 (+0000) Subject: Remove asset tag monkey patch as it is no longer having any effect X-Git-Tag: live~6971 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/c82fedb0d6e62539ccad18b5032e53d34664a71e Remove asset tag monkey patch as it is no longer having any effect due to rails changes. --- diff --git a/config/initializers/asset_tag_helper.rb b/config/initializers/asset_tag_helper.rb deleted file mode 100644 index a5f2e5ac3..000000000 --- a/config/initializers/asset_tag_helper.rb +++ /dev/null @@ -1,10 +0,0 @@ -module ActionView - module Helpers - module AssetTagHelper - def rewrite_asset_path!(source) - asset_id = rails_asset_id(source) - source << "/#{asset_id}" if !asset_id.blank? - end - end - end -end