From 157c3ecc6251e0033e71f97c874117976790db6d Mon Sep 17 00:00:00 2001 From: Bobby McDonald Date: Tue, 13 Aug 2019 23:40:07 -0400 Subject: Implement ruby 2.6 hash merging. As of ruby 2.6, Hash#merge and Hash#merge! allow for multiple hashes to be passed to the method, and will merge each one in the order that they were passed. --- lib/hashie/mash.rb | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) (limited to 'lib/hashie/mash.rb') diff --git a/lib/hashie/mash.rb b/lib/hashie/mash.rb index bac93a4..888b4f6 100644 --- a/lib/hashie/mash.rb +++ b/lib/hashie/mash.rb @@ -251,11 +251,39 @@ module Hashie def deep_merge(other_hash, &blk) dup.deep_update(other_hash, &blk) end - alias merge deep_merge # Recursively merges this mash with the passed # in hash, merging each hash in the hierarchy. def deep_update(other_hash, &blk) + _deep_update(other_hash, &blk) + self + end + + with_minimum_ruby('2.6.0') do + # Performs a deep_update on a duplicate of the + # current mash. + def deep_merge(*other_hashes, &blk) + dup.deep_update(*other_hashes, &blk) + end + + # Recursively merges this mash with the passed + # in hash, merging each hash in the hierarchy. + def deep_update(*other_hashes, &blk) + other_hashes.each do |other_hash| + _deep_update(other_hash, &blk) + end + self + end + end + + # Alias these lexically so they get the correctly defined + # #deep_merge and #deep_update based on ruby version. + alias merge deep_merge + alias deep_merge! deep_update + alias update deep_update + alias merge! update + + def _deep_update(other_hash, &blk) other_hash.each_pair do |k, v| key = convert_key(k) if v.is_a?(::Hash) && key?(key) && regular_reader(key).is_a?(Mash) @@ -266,11 +294,8 @@ module Hashie custom_writer(key, value, false) end end - self end - alias deep_merge! deep_update - alias update deep_update - alias merge! update + private :_deep_update # Assigns a value to a key def assign_property(name, value) -- cgit v1.2.1