aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/asset_tag_helper.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-04-19 22:01:25 +0200
committerJosé Valim <jose.valim@gmail.com>2011-04-19 22:02:02 +0200
commit22fcef90b185199563719fc511346bf4c2f5bbff (patch)
tree1bddc3bc8f9f077b9c2e31c4fd56ec55fedca9d8 /actionpack/lib/action_view/helpers/asset_tag_helper.rb
parente162e912c9f2b3ed5789a2d262c7962a67fb6b5d (diff)
downloadrails-22fcef90b185199563719fc511346bf4c2f5bbff.tar.gz
rails-22fcef90b185199563719fc511346bf4c2f5bbff.tar.bz2
rails-22fcef90b185199563719fc511346bf4c2f5bbff.zip
Actually add an abstract class, so it is easier to get rid of old asset paths in the future.
Diffstat (limited to 'actionpack/lib/action_view/helpers/asset_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
index e859b3ae49..a7ae6ad0bf 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
@@ -446,7 +446,7 @@ module ActionView
private
def asset_paths
- @asset_paths ||= AssetPaths.new(config, controller)
+ @asset_paths ||= AssetTagHelper::AssetPaths.new(config, controller)
end
end
end