except!(*keys)
Replaces the hash without the given keys.
# File activesupport/lib/active_support/core_ext/hash/except.rb, line 19 def except!(*keys) keys.each { |key| delete(key) } self end