Sha256: 21b8aa41a5cbedbd4ef37eabdcdf740312762593385d7c1307b394c5c159c1fa
Contents?: true
Size: 321 Bytes
Versions: 91
Compression:
Stored size: 321 Bytes
Contents
module ActiveJob class ConfiguredJob #:nodoc: def initialize(job_class, options={}) @options = options @job_class = job_class end def perform_now(*args) @job_class.new(*args).perform_now end def perform_later(*args) @job_class.new(*args).enqueue @options end end end
Version data entries
91 entries across 89 versions & 12 rubygems