module Representable::Debug::Mapper
Public Instance Methods
compile_fragment(bin, doc)
click to toggle source
Calls superclass method
# File lib/representable/debug.rb, line 88 def compile_fragment(bin, doc) bin.extend(Binding) puts " compile_fragment: #{bin.name}" super end
uncompile_fragment(bin, doc)
click to toggle source
Calls superclass method
# File lib/representable/debug.rb, line 82 def uncompile_fragment(bin, doc) bin.extend(Binding) puts " uncompile_fragment: #{bin.name}" super end