except(*keys)
Returns a new hash without the given keys.
# File activesupport/lib/active_support/core_ext/hash/except.rb, line 12 def except(*keys) dup.except!(*keys) end