Class: Configurate::LookupChain
- Inherits:
-
Object
- Object
- Configurate::LookupChain
- Defined in:
- lib/configurate/lookup_chain.rb
Overview
This object builds a chain of configuration providers to try to find the value of a setting.
Instance Method Summary collapse
-
#add_provider(provider) ⇒ void
Adds a provider to the chain.
-
#initialize ⇒ LookupChain
constructor
A new instance of LookupChain.
-
#lookup(setting) ⇒ Array, ...
(also: #[])
Tries all providers in the order they were added to provide a response for setting.
Constructor Details
#initialize ⇒ LookupChain
Returns a new instance of LookupChain.
7 8 9 |
# File 'lib/configurate/lookup_chain.rb', line 7 def initialize @provider = [] end |
Instance Method Details
#add_provider(provider) ⇒ void
This method returns an undefined value.
Adds a provider to the chain. Providers are tried in the order they are added, so the order is important.
18 19 20 21 22 23 24 |
# File 'lib/configurate/lookup_chain.rb', line 18 def add_provider(provider, ...) unless provider.respond_to?(:instance_methods) && provider.instance_methods.include?(:lookup) raise ArgumentError, "the given provider does not respond to lookup" end @provider << provider.new(...) end |
#lookup(setting) ⇒ Array, ... Also known as: []
Tries all providers in the order they were added to provide a response for setting.
34 35 36 37 38 39 40 41 42 43 |
# File 'lib/configurate/lookup_chain.rb', line 34 def lookup(setting, ...) setting = SettingPath.new setting if setting.is_a? String @provider.each do |provider| begin return special_value_or_string(provider.lookup(setting.clone, ...)) rescue SettingNotFoundError; end end nil end |