diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2016-01-29 14:12:00 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2016-01-29 14:12:00 +0530 |
commit | 1b46a1158c221c3910f80f183f6591f14e68c236 (patch) | |
tree | 9dfb54054c5538919ac856ee4c974438873b7a3d /activesupport/lib | |
parent | 43df26711856bc4b90780a185078fc84fa597564 (diff) | |
download | rails-1b46a1158c221c3910f80f183f6591f14e68c236.tar.gz rails-1b46a1158c221c3910f80f183f6591f14e68c236.tar.bz2 rails-1b46a1158c221c3910f80f183f6591f14e68c236.zip |
Fix broken number_to_currency tests
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/number_helper/number_to_currency_converter.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb b/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb index fe8e871fed..57f40f33bf 100644 --- a/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb +++ b/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/numeric/inquiry' + module ActiveSupport module NumberHelper class NumberToCurrencyConverter < NumberConverter # :nodoc: |