module HashOps

Public Class Methods

remove_hash(other_hash) click to toggle source
# File lib/helpers/hash_helpers.rb, line 45
def self.remove_hash(other_hash)
  delete_if { |k,v| other_hash[k] == v }
end