aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/hash.rb
blob: ec9a2f8951e9ecc0b2fa204abbbd62428f37d9f9 (plain)
1
2
3
4
5
6
class << Hash
  def without(hash, *keys)
    nk = hash.keys - keys
    Hash[*nk.zip(hash.values_at(*nk)).flatten]
  end
end