aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2015-12-28 19:03:48 -0500
committerJon Moss <me@jonathanmoss.me>2015-12-28 19:03:48 -0500
commit7c590835264c4adf006af428b418a88b3e3600c7 (patch)
treea284863b895a6c69e2f69dba1f0a03c30a77fd00 /activesupport
parent2ad6deb5344abd77515f1c04edbd586a5538f705 (diff)
downloadrails-7c590835264c4adf006af428b418a88b3e3600c7.tar.gz
rails-7c590835264c4adf006af428b418a88b3e3600c7.tar.bz2
rails-7c590835264c4adf006af428b418a88b3e3600c7.zip
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 9a3651f29a..35c037880d 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