Module: NewRelic::Security::Instrumentation::Rails::Engine::Prepend
- Defined in:
- lib/newrelic_security/instrumentation-security/rails/prepend.rb
Instance Method Summary collapse
Methods included from NewRelic::Security::Instrumentation::Rails::Engine
Instance Method Details
#call(env) ⇒ Object
8 9 10 11 12 |
# File 'lib/newrelic_security/instrumentation-security/rails/prepend.rb', line 8 def call(env) retval = nil event = call_on_enter(env) { retval = super } call_on_exit(event, retval) { return retval } end |