module NewRelic::Agent::Instrumentation::Grape::Prepend

Public Instance Methods

call(env) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/grape/prepend.rb, line 8
def call(env)
  begin
    super(env)
  ensure
    Grape::Instrumentation.capture_transaction(env, self)
  end
end