module Tracebin::BackgroundJobInstrumentation::ResqueInstrumentationInstaller

Public Instance Methods

payload_class() click to toggle source
Calls superclass method
# File lib/tracebin/background_job_instrumentation/resque.rb, line 29
def payload_class
  klass = super
  klass.instance_eval do
    extend ::Resque::Plugins::TracebinInstrumentation::Job
  end
end