class Jackrabbit::Config

Attributes

connection[RW]
exchange_name[RW]
exchange_options[RW]
exchange_type[RW]

Public Class Methods

default() { |config| ... } click to toggle source
# File lib/jackrabbit/config.rb, line 3
def self.default(&block)
  (@default ||= new).tap do |config|
    yield config if block_given?
  end
end
new() click to toggle source
# File lib/jackrabbit/config.rb, line 12
def initialize
  @exchange_options = {}
end