Sha256: 61e89daeb2741f377444e0e20e4b6260750920978c2fe7c254507372acbb1d8c
Contents?: true
Size: 435 Bytes
Versions: 26
Compression:
Stored size: 435 Bytes
Contents
module Quebert module Controller # The most Controller. Doesn't even accept the queue as an argument because there's nothing # a job can do to be rescheduled, etc. class Base attr_reader :job def initialize(job) @job = job end def perform begin job.perform! rescue Job::Action # Nothing to do chief! end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems