class Activejob::PerformLater::Job

Public Instance Methods

perform(target, method_name, args) click to toggle source
# File lib/activejob/perform_later/job.rb, line 4
def perform(target, method_name, args)
  target = target.safe_constantize if target.is_a?(String)
  target.public_send method_name, *args
end