class ActiveJobDelayedExecution::DelayedExecutionJob
Public Instance Methods
perform(object, public_method_name, *arguments)
click to toggle source
# File lib/active_job_delayed_execution/delayed_execution_job.rb, line 3 def perform(object, public_method_name, *arguments) object.public_send(public_method_name, *arguments) end