diff options
author | Akira Matsuda <ronnie@dio.jp> | 2019-08-02 04:27:48 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2019-08-02 05:36:38 +0900 |
commit | 2ec1bad4ad83bdf8cecf055642ae3eb57d5fe919 (patch) | |
tree | 3fc3e5608848a84cea3783a86f575c71afcb4f46 /activesupport/lib/active_support/inflector | |
parent | f22a11edc71de44b3ef283066c6307503b83165b (diff) | |
download | rails-2ec1bad4ad83bdf8cecf055642ae3eb57d5fe919.tar.gz rails-2ec1bad4ad83bdf8cecf055642ae3eb57d5fe919.tar.bz2 rails-2ec1bad4ad83bdf8cecf055642ae3eb57d5fe919.zip |
Missing require AS/core_ext/object/blank
Diffstat (limited to 'activesupport/lib/active_support/inflector')
-rw-r--r-- | activesupport/lib/active_support/inflector/methods.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/inflector/methods.rb b/activesupport/lib/active_support/inflector/methods.rb index 94d1115ccf..33a17a7741 100644 --- a/activesupport/lib/active_support/inflector/methods.rb +++ b/activesupport/lib/active_support/inflector/methods.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true require "active_support/inflections" +require "active_support/core_ext/object/blank" module ActiveSupport # The Inflector transforms words from singular to plural, class names to table |