Sha256: d345b05a946415aa8cd49cc136591c3630bb97b94f2548c93d20a43f19d660d1

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

module Refinements
  # Refinements for Hashes.
  module Hashes
    # rubocop:disable Metrics/BlockLength
    refine Hash do
      # TODO: Remove when Ruby 2.4 is released.
      def compact
        puts "[DEPRECATION]: #compact is deprecated and is included, by default, in Ruby 2.4."
        dup.compact!
      end

      # TODO: Remove when Ruby 2.4 is released.
      def compact!
        puts "[DEPRECATION]: #compact! is deprecated and is included, by default, in Ruby 2.4."
        reject! { |_, value| value.nil? }
      end

      def deep_merge other_hash
        dup.deep_merge! other_hash
      end

      def deep_merge! other_hash
        other_hash.each.with_object self do |(other_key, other_value), original_hash|
          current_value = original_hash[other_key]
          original_hash[other_key] = deep_merge_value current_value, other_value
        end
      end

      def reverse_merge other_hash
        other_hash.merge self
      end

      def reverse_merge! other_hash
        merge!(other_hash) { |_, left_value, _| left_value }
      end

      private

      def deep_merge_value current_value, other_value
        return current_value.deep_merge(other_value) if current_value.is_a?(Hash) && other_value.is_a?(Hash)
        other_value
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
refinements-3.0.0 lib/refinements/hashes.rb