Module: NewRelic::Security::Instrumentation::ActionDispatch::Routing::RouteSet::Dispatcher::Prepend
- Defined in:
- lib/newrelic_security/instrumentation-security/rails/prepend.rb
Instance Method Summary collapse
Methods included from NewRelic::Security::Instrumentation::ActionDispatch::Routing::RouteSet::Dispatcher
#serve_on_enter, #serve_on_exit
Instance Method Details
#serve(req) ⇒ Object
40 41 42 43 44 |
# File 'lib/newrelic_security/instrumentation-security/rails/prepend.rb', line 40 def serve(req) retval = nil event = serve_on_enter(req) { retval = super } serve_on_exit(event, retval) { return retval } end |