aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2014-12-21 10:46:22 -0700
committerSean Griffin <sean@seantheprogrammer.com>2014-12-21 10:46:22 -0700
commitc9a953a17e106418ec36f2ab9a8644888a6cb2f6 (patch)
tree9be109c3969d544a55dece2e340ac556d2a8ec73
parentef529c637130918d8cb225bd7083e44ef4887899 (diff)
parent7b76f05cd169e3cfcf1dee4abb64d7ec79197d28 (diff)
downloadrails-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.rb2
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.
#