Method: ActionController::Instrumentation#render

Defined in:
actionpack/lib/action_controller/metal/instrumentation.rb

#renderObject



29
30
31
32
33
34
35
# File 'actionpack/lib/action_controller/metal/instrumentation.rb', line 29

def render(*)
  render_output = nil
  self.view_runtime = cleanup_view_runtime do
    Benchmark.ms { render_output = super }
  end
  render_output
end