class PublisherRenoteDac::Configuration

Attributes

base_controller[RW]
dev_base_url[RW]
exchange[RW]
exchange_type[RW]
heartbeat[RW]
password[RW]
prod_base_url[RW]
rabbitmq_queue[RW]
username[RW]
vhost[RW]

Public Class Methods

new() click to toggle source
# File lib/publisher_renote_dac/configuration.rb, line 6
def initialize
  @username = nil
  @password = nil
  @heartbeat = 2
  @exchange = 'sneakers'
  @exchange_type = :direct
  @vhost = '/'
  @rabbitmq_queue = nil
  @base_controller = '::ApplicationController'
  @prod_base_url = nil
  @dev_base_url = nil
end