module Hashie::Extensions::ActiveSupport::CoreExt::Hash

Public Instance Methods

except(*keys) click to toggle source
Calls superclass method
# File lib/hashie/extensions/active_support/core_ext/hash.rb, line 6
def except(*keys)
  string_keys = keys.map { |key| convert_key(key) }
  super(*string_keys)
end