Sha256: 4944e8d0bf795d7042cab4461d180cb9fcadd267c976d27693270d4bb676f057

Contents?: true

Size: 638 Bytes

Versions: 6

Compression:

Stored size: 638 Bytes

Contents

require 'redis_rds'

require 'rworkflow/version'
require 'rworkflow/configuration'
require 'rworkflow/sidekiq_helper'
require 'rworkflow/flow_registry'
require 'rworkflow/flow'
require 'rworkflow/state'
require 'rworkflow/state_error'
require 'rworkflow/lifecycle'
require 'rworkflow/sidekiq_flow'
require 'rworkflow/sidekiq_lifecycle'
require 'rworkflow/sidekiq_state'
require 'rworkflow/transition_error'
require 'rworkflow/worker'

module Rworkflow
  class << self
    def config
      return @config ||= Rworkflow::Configuration.new
    end

    def configure
      yield(config) if block_given?
      return config
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rworkflow-0.7.3 lib/rworkflow.rb
rworkflow-0.7.2 lib/rworkflow.rb
rworkflow-0.7.1 lib/rworkflow.rb
rworkflow-0.7.0 lib/rworkflow.rb
rworkflow-0.6.5 lib/rworkflow.rb
rworkflow-0.6.4 lib/rworkflow.rb