diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-10-18 08:39:20 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-10-18 08:39:20 -0200 |
commit | 5f60735194290172533521e417f81bb3075dc867 (patch) | |
tree | 90d4f27224b32fa6c59db7b0a20a147bae2e6f6e /actionpack/lib/action_view | |
parent | f7573175de7c584ee9c256fb567311adc2de04b9 (diff) | |
download | rails-5f60735194290172533521e417f81bb3075dc867.tar.gz rails-5f60735194290172533521e417f81bb3075dc867.tar.bz2 rails-5f60735194290172533521e417f81bb3075dc867.zip |
Add missing require
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/helpers/number_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/number_helper.rb b/actionpack/lib/action_view/helpers/number_helper.rb index 4f8cc2012c..b60a51997d 100644 --- a/actionpack/lib/action_view/helpers/number_helper.rb +++ b/actionpack/lib/action_view/helpers/number_helper.rb @@ -1,6 +1,7 @@ require 'active_support/core_ext/big_decimal/conversions' require 'active_support/core_ext/float/rounding' require 'active_support/core_ext/object/blank' +require 'active_support/core_ext/string/output_safety' module ActionView # = Action View Number Helpers |