module NewRelic::Agent::Instrumentation::Sinatra::Prepend
Public Instance Methods
dispatch!()
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/sinatra/prepend.rb, line 10 def dispatch! dispatch_with_tracing { super } end
process_route(*args, &block)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/sinatra/prepend.rb, line 14 def process_route(*args, &block) process_route_with_tracing(*args) { super } end
route_eval(*args, &block)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/sinatra/prepend.rb, line 18 def route_eval(*args, &block) route_eval_with_tracing(*args) { super } end