diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-04-21 12:38:13 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-04-30 01:47:10 -0300 |
commit | d445ddd25c656a8fd05ba21e956270d8a231567f (patch) | |
tree | 456f46b25b1695736faebdb186329db4df914d7a /actionpack/lib | |
parent | 363d7ee55176e692bc031dcf0dc7f9f6e359abd6 (diff) | |
download | rails-d445ddd25c656a8fd05ba21e956270d8a231567f.tar.gz rails-d445ddd25c656a8fd05ba21e956270d8a231567f.tar.bz2 rails-d445ddd25c656a8fd05ba21e956270d8a231567f.zip |
Add missing require when helpers are used in isolation
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb | 1 |
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 |