aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRichard Schneeman <richard.schneeman@gmail.com>2015-12-28 20:07:22 -0600
committerRichard Schneeman <richard.schneeman@gmail.com>2015-12-28 20:07:22 -0600
commitb3cabb5aaed8822a815881f3bf8d9a6b46175a40 (patch)
treef90149b3352090643a3de50da7c7dd904da8ce72 /activesupport
parent0d2675f84f54504e5ba25b2f53b00bac239ef393 (diff)
parent7c590835264c4adf006af428b418a88b3e3600c7 (diff)
downloadrails-b3cabb5aaed8822a815881f3bf8d9a6b46175a40.tar.gz
rails-b3cabb5aaed8822a815881f3bf8d9a6b46175a40.tar.bz2
rails-b3cabb5aaed8822a815881f3bf8d9a6b46175a40.zip
Merge pull request #22822 from maclover7/fix-22805
Add a missing require to ActiveSupport::NumericWithFormat
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/numeric/conversions.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/numeric/conversions.rb b/activesupport/lib/active_support/core_ext/numeric/conversions.rb
index 9f8b7edc22..35416c3e29 100644
--- a/activesupport/lib/active_support/core_ext/numeric/conversions.rb
+++ b/activesupport/lib/active_support/core_ext/numeric/conversions.rb
@@ -1,5 +1,6 @@
require 'active_support/core_ext/big_decimal/conversions'
require 'active_support/number_helper'
+require 'active_support/core_ext/module/deprecation'
module ActiveSupport::NumericWithFormat