diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2014-12-21 10:46:22 -0700 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2014-12-21 10:46:22 -0700 |
commit | c9a953a17e106418ec36f2ab9a8644888a6cb2f6 (patch) | |
tree | 9be109c3969d544a55dece2e340ac556d2a8ec73 | |
parent | ef529c637130918d8cb225bd7083e44ef4887899 (diff) | |
parent | 7b76f05cd169e3cfcf1dee4abb64d7ec79197d28 (diff) | |
download | rails-c9a953a17e106418ec36f2ab9a8644888a6cb2f6.tar.gz rails-c9a953a17e106418ec36f2ab9a8644888a6cb2f6.tar.bz2 rails-c9a953a17e106418ec36f2ab9a8644888a6cb2f6.zip |
Merge pull request #18119 from joker1007/add_require_core_ext_hash_to_activejob
Add 'require' for Hash#with_indifferent_access to active_job/arguments.rb
-rw-r--r-- | activejob/lib/active_job/arguments.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activejob/lib/active_job/arguments.rb b/activejob/lib/active_job/arguments.rb index e2c076eb3f..752be6898e 100644 --- a/activejob/lib/active_job/arguments.rb +++ b/activejob/lib/active_job/arguments.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/hash/indifferent_access' + module ActiveJob # Raised when an exception is raised during job arguments deserialization. # |