class RenoteDac::Configuration

Attributes

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

Public Class Methods

new() click to toggle source
# File lib/renote_dac/configuration.rb, line 6
def initialize
  @username = nil
  @password = nil
  @heartbeat = 2
  @exchange = 'sneakers'
  @exchange_type = :direct
  @vhost = '/'
  @rabbitmq_queue = 'consumer_renote_dac.email'
  @base_controller = '::ApplicationController'
  @prod_base_url = nil
  @dev_base_url = nil
  @postmark_api_key = nil
  @from_address = 'Your App Name <app@name.com>'
  @templates = nil
end