diff options
author | Yuji Yaginuma <yuuji.yaginuma@gmail.com> | 2018-10-01 08:23:38 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-01 08:23:38 +0900 |
commit | 09f92a1b9883927dbeda23a0cc145a2a62a9df60 (patch) | |
tree | 6c67cebfeeb898c2f4f731dfc463bd84e49786c3 | |
parent | df9c972afe88e3c9c65bfcd96eddca927a42b5e3 (diff) | |
parent | 5f6a906094641a8830d35dcc5e79cafa8c1db872 (diff) | |
download | rails-09f92a1b9883927dbeda23a0cc145a2a62a9df60.tar.gz rails-09f92a1b9883927dbeda23a0cc145a2a62a9df60.tar.bz2 rails-09f92a1b9883927dbeda23a0cc145a2a62a9df60.zip |
Merge pull request #34031 from lsylvester/require-except-before-aliasing-it
Require the except hash extension before trying to alias it
-rw-r--r-- | activesupport/lib/active_support/hash_with_indifferent_access.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb index b9e64ed05d..2fac579469 100644 --- a/activesupport/lib/active_support/hash_with_indifferent_access.rb +++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb @@ -2,6 +2,7 @@ require "active_support/core_ext/hash/keys" require "active_support/core_ext/hash/reverse_merge" +require "active_support/core_ext/hash/except" module ActiveSupport # Implements a hash where keys <tt>:foo</tt> and <tt>"foo"</tt> are considered |