class Lifesaver::Config

A container for configuration parameters

Attributes

indexing_queue[RW]
notification_queue[RW]

Public Class Methods

new(options = {}) click to toggle source
# File lib/lifesaver/config.rb, line 6
def initialize(options = {})
  @notification_queue = :lifesaver_notification
  @indexing_queue = :lifesaver_indexing

  options.each do |key, value|
    public_send("#{key}=", value)
  end
end