module Representable::Hash::AllowSymbols

Private Instance Methods

filter_wrap_for(data, *args) click to toggle source
Calls superclass method
# File lib/representable/hash/allow_symbols.rb, line 5
def filter_wrap_for(data, *args)
  super(Conversion.stringify_keys(data), *args)
end
update_properties_from(data, *args) click to toggle source
Calls superclass method
# File lib/representable/hash/allow_symbols.rb, line 9
def update_properties_from(data, *args)
  super(Conversion.stringify_keys(data), *args)
end