mirror of https://github.com/rails/rails
Add 'require' for Hash#with_indifferent_access
ActiveJob::Arguments uses Hash#with_indifferent_access. But, activejob gem does not require Hash extension library. When we use activejob as standalone, we need extra require statement. This is unhandy. This commit fixes it.
This commit is contained in:
parent
651bba1bfe
commit
7b76f05cd1
|
@ -1,3 +1,5 @@
|
|||
require 'active_support/core_ext/hash/indifferent_access'
|
||||
|
||||
module ActiveJob
|
||||
# Raised when an exception is raised during job arguments deserialization.
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue