module Liquid::DocumentProfilingHook

Public Instance Methods

render_to_output_buffer(context, output) click to toggle source
Calls superclass method
# File lib/liquid/profiler/hooks.rb, line 18
def render_to_output_buffer(context, output)
  return super unless context.profiler
  context.profiler.profile(context.template_name) { super }
end