diff options
author | Akira Matsuda <ronnie@dio.jp> | 2014-08-14 01:06:34 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2014-08-14 01:06:34 +0900 |
commit | 1a299b6ca6c6be6a22b86acac7cefd59c56b5b8e (patch) | |
tree | 387294de3ea9f1023cdef78c60a8621e9cb5f298 /actionview | |
parent | e9ce987a9a6fdad436b5511874963e8485b66f84 (diff) | |
download | rails-1a299b6ca6c6be6a22b86acac7cefd59c56b5b8e.tar.gz rails-1a299b6ca6c6be6a22b86acac7cefd59c56b5b8e.tar.bz2 rails-1a299b6ca6c6be6a22b86acac7cefd59c56b5b8e.zip |
Missing ActiveSupport require for calling String#first
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/helpers/translation_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionview/lib/action_view/helpers/translation_helper.rb b/actionview/lib/action_view/helpers/translation_helper.rb index 17ec6a40bf..1d50ea2ff5 100644 --- a/actionview/lib/action_view/helpers/translation_helper.rb +++ b/actionview/lib/action_view/helpers/translation_helper.rb @@ -1,4 +1,5 @@ require 'action_view/helpers/tag_helper' +require 'active_support/core_ext/string/access' require 'i18n/exceptions' module ActionView |