Add missing require to active_support/callbacks.rb

At line 353, `blank?` method is called.
We need to `require "active_support/core_ext/object/blank"`
for `blank?` to be available.
This commit is contained in:
OKURA Masafumi 2021-05-08 13:42:23 +09:00
parent a31f7645c7
commit 3b3a43eb09
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ require "active_support/descendants_tracker"
require "active_support/core_ext/array/extract_options"
require "active_support/core_ext/class/attribute"
require "active_support/core_ext/string/filters"
require "active_support/core_ext/object/blank"
require "thread"
module ActiveSupport