diff options
author | Akira Matsuda <ronnie@dio.jp> | 2018-10-20 14:13:43 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2018-10-20 14:58:04 +0900 |
commit | 1769d932696692a58dcf507c7c6d90745b56b910 (patch) | |
tree | 207443e959e9600195b344a90be45b84a981f0d8 | |
parent | 74a47746371be98fb33f5e49b20235b3b29130d0 (diff) | |
download | rails-1769d932696692a58dcf507c7c6d90745b56b910.tar.gz rails-1769d932696692a58dcf507c7c6d90745b56b910.tar.bz2 rails-1769d932696692a58dcf507c7c6d90745b56b910.zip |
Missing require "active_support/dependencies/autoload"
-rw-r--r-- | activesupport/lib/active_support/number_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/number_helper.rb b/activesupport/lib/active_support/number_helper.rb index c75ad52b0c..d19a2f64d4 100644 --- a/activesupport/lib/active_support/number_helper.rb +++ b/activesupport/lib/active_support/number_helper.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require "active_support/dependencies/autoload" + module ActiveSupport module NumberHelper extend ActiveSupport::Autoload |