Method: Puppet::Settings::ChainedValues#initialize

Defined in:
lib/puppet/settings.rb

#initialize(mode, environment, value_sets, defaults) ⇒ ChainedValues

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of ChainedValues.

See Also:

  • Puppet::Settings.values


1428
1429
1430
1431
1432
1433
# File 'lib/puppet/settings.rb', line 1428

def initialize(mode, environment, value_sets, defaults)
  @mode = mode
  @environment = environment
  @value_sets = value_sets
  @defaults = defaults
end