11 12 13 14 15
# File 'lib/fox/core_ext/hash.rb', line 11 def except(*keys) copy = self.dup keys.each { |key| copy.delete(key) } copy end