diff options
author | Lachlan Sylvester <lachlan.sylvester@hypothetical.com.au> | 2018-10-01 08:08:08 +1000 |
---|---|---|
committer | Lachlan Sylvester <lachlan.sylvester@hypothetical.com.au> | 2018-10-01 08:08:08 +1000 |
commit | 5f6a906094641a8830d35dcc5e79cafa8c1db872 (patch) | |
tree | 6c67cebfeeb898c2f4f731dfc463bd84e49786c3 /activesupport/lib | |
parent | df9c972afe88e3c9c65bfcd96eddca927a42b5e3 (diff) | |
download | rails-5f6a906094641a8830d35dcc5e79cafa8c1db872.tar.gz rails-5f6a906094641a8830d35dcc5e79cafa8c1db872.tar.bz2 rails-5f6a906094641a8830d35dcc5e79cafa8c1db872.zip |
Require the except hash extension before trying to alias it
Diffstat (limited to 'activesupport/lib')
-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 |