module ActiveCrew

Constants

VERSION

Attributes

configuration[R]

Getter for shared global objects

Public Class Methods

configure() { |configuration| ... } click to toggle source

Yields the global configuration to a block. @yield [Configuration] global configuration

@example

ActiveCrew.configure do |config|
  config.responder = :fayer
end
# File lib/active_crew.rb, line 39
def configure
  yield configuration if block_given?

  Backends.create
  Responders.create
end