aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-04-21 12:38:13 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-04-30 01:47:10 -0300
commitd445ddd25c656a8fd05ba21e956270d8a231567f (patch)
tree456f46b25b1695736faebdb186329db4df914d7a /actionpack
parent363d7ee55176e692bc031dcf0dc7f9f6e359abd6 (diff)
downloadrails-d445ddd25c656a8fd05ba21e956270d8a231567f.tar.gz
rails-d445ddd25c656a8fd05ba21e956270d8a231567f.tar.bz2
rails-d445ddd25c656a8fd05ba21e956270d8a231567f.zip
Add missing require when helpers are used in isolation
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb b/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb
index dd4e9ae4cc..35f91cec18 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb
@@ -1,5 +1,6 @@
require 'thread'
require 'active_support/core_ext/file'
+require 'active_support/core_ext/module/attribute_accessors'
module ActionView
module Helpers