Class: Configoro::HashWithIndifferentAccess
- Inherits:
-
Hash
- Object
- Hash
- Configoro::HashWithIndifferentAccess
- Defined in:
- lib/configoro/simple.rb
Direct Known Subclasses
Instance Method Summary collapse
Instance Method Details
#deep_merge(other_hash) ⇒ Object
10 11 12 |
# File 'lib/configoro/simple.rb', line 10 def deep_merge(other_hash) dup.deep_merge!(other_hash) end |
#deep_merge!(other_hash) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/configoro/simple.rb', line 14 def deep_merge!(other_hash) other_hash.each_pair do |k, v| tv = self[k] self[k] = tv.is_a?(Hash) && v.is_a?(Hash) ? tv.deep_merge(v) : v end self end |