Class: Chronos::Configuration::Snapshot

Inherits:
Object
  • Object
show all
Defined in:
lib/chronos/configuration.rb

Overview

Immutable configuration shared by all runtime components.

Instance Method Summary collapse

Constructor Details

#initialize(values) ⇒ Snapshot

Returns a new instance of Snapshot.



125
126
127
128
129
130
131
132
# File 'lib/chronos/configuration.rb', line 125

def initialize(values)
  ATTRIBUTES.each do |attribute|
    value = values[attribute]
    value.freeze if value.is_a?(Array) || value.is_a?(Hash) || value.is_a?(String)
    instance_variable_set("@#{attribute}", value)
  end
  freeze
end

Instance Method Details

#enabled_for_environment?Boolean

Returns:

  • (Boolean)


134
135
136
# File 'lib/chronos/configuration.rb', line 134

def enabled_for_environment?
  enabled && !ignored_environments.map(&:to_s).include?(environment.to_s)
end