class Hash

def except(*items)


Returns a new hash with keys removed
def except(*items)
  self.dup.except!(*items)
end unless method_defined? :except