module GetSchwifty::Job

:nodoc

Public Instance Methods

perform(schwifty_job_id, klass_name, method, params, *identifiers) click to toggle source
# File lib/get_schwifty/job.rb, line 6
def perform(schwifty_job_id, klass_name, method, params, *identifiers)
  klass_name.constantize.new(schwifty_job_id, params, Hash[*identifiers]).send(method)
end