module Taskflow
Constants
- VERSION
Public Class Methods
configure() { |self| ... }
click to toggle source
# File lib/taskflow.rb, line 16 def self.configure yield self end
worker_options=(opts)
click to toggle source
# File lib/taskflow.rb, line 11 def self.worker_options=(opts) orig = HashWithIndifferentAccess.new(Worker.sidekiq_options_hash || {}) Worker.sidekiq_options_hash = orig.merge(opts).merge(retry: false) end