diff options
author | Rodrigo Rosenfeld Rosas <rr.rosas@gmail.com> | 2013-01-29 17:13:39 -0200 |
---|---|---|
committer | Rodrigo Rosenfeld Rosas <rr.rosas@gmail.com> | 2013-01-29 17:13:39 -0200 |
commit | d82b5db059bd824d6699936b567359d70d427e2a (patch) | |
tree | 8f81c9faf45d0dec7989dd97e6d8941c9c571815 /actionpack | |
parent | 8593e0f5627468720cbf7b327a2cc8bc06167d8a (diff) | |
download | rails-d82b5db059bd824d6699936b567359d70d427e2a.tar.gz rails-d82b5db059bd824d6699936b567359d70d427e2a.tar.bz2 rails-d82b5db059bd824d6699936b567359d70d427e2a.zip |
Add another NumberHelper missing dependency
Another missing dependency, now affecting #number_to_percentage.
It depends on reverse_merge.
Diffstat (limited to 'actionpack')
-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 ca8e0dfac7..b627c77dca 100644 --- a/actionpack/lib/action_view/helpers/number_helper.rb +++ b/actionpack/lib/action_view/helpers/number_helper.rb @@ -1,6 +1,7 @@ # encoding: utf-8 require 'active_support/core_ext/hash/keys' +require 'active_support/core_ext/hash/reverse_merge' require 'active_support/core_ext/big_decimal/conversions' require 'active_support/core_ext/float/rounding' require 'active_support/core_ext/object/blank' |