module Taskflow

Constants

VERSION

Public Class Methods

configure() { |self| ... } click to toggle source
# File lib/taskflow.rb, line 20
def self.configure
    yield self
end
table_name_prefix() click to toggle source
# File lib/taskflow.rb, line 11
def self.table_name_prefix
    'taskflow_'
end
worker_options=(opts) click to toggle source
# File lib/taskflow.rb, line 15
def self.worker_options=(opts)
    orig = HashWithIndifferentAccess.new(Worker.sidekiq_options_hash || {})
    Worker.sidekiq_options_hash = orig.merge(opts).merge(retry: false)
end