module Representable::Debug::Representable

Public Instance Methods

create_representation_with(doc, options, format) click to toggle source
Calls superclass method
# File lib/representable/debug.rb, line 15
def create_representation_with(doc, options, format)
  puts
  puts "[Serialize]........."
  puts "[Serialize]"
  super
end
representable_mapper(*args) click to toggle source
Calls superclass method
# File lib/representable/debug.rb, line 22
def representable_mapper(*args)
  super.extend(Mapper)
end
update_properties_from(doc, options, format) click to toggle source
Calls superclass method
# File lib/representable/debug.rb, line 8
def update_properties_from(doc, options, format)
  puts
  puts "[Deserialize]........."
  puts "[Deserialize] document #{doc.inspect}"
  super
end