class Materialist::Configuration

Attributes

api_client[RW]
metrics_client[RW]
notice_error[RW]
sidekiq_options[RW]
topics[RW]

Public Class Methods

new() click to toggle source
# File lib/configuration.rb, line 21
def initialize
  @topics = []
  @sidekiq_options = {}
  @api_client = Routemaster::APIClient.new(response_class: ::Routemaster::Responses::HateoasResponse)
  @metrics_client = NullMetricsClient
  @notice_error = nil
end