Class: Puppet::Settings::ValuesFromSection
- Defined in:
- lib/puppet/settings.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #include?(name) ⇒ Boolean
-
#initialize(name, section) ⇒ ValuesFromSection
constructor
A new instance of ValuesFromSection.
- #inspect ⇒ Object
- #lookup(name) ⇒ Object
Constructor Details
#initialize(name, section) ⇒ ValuesFromSection
Returns a new instance of ValuesFromSection.
1553 1554 1555 1556 |
# File 'lib/puppet/settings.rb', line 1553 def initialize(name, section) @name = name @section = section end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
1551 1552 1553 |
# File 'lib/puppet/settings.rb', line 1551 def name @name end |
Instance Method Details
#include?(name) ⇒ Boolean
1558 1559 1560 |
# File 'lib/puppet/settings.rb', line 1558 def include?(name) !@section.setting(name).nil? end |
#inspect ⇒ Object
1569 1570 1571 |
# File 'lib/puppet/settings.rb', line 1569 def inspect %Q(<#{self.class}:#{object_id} @name="#{@name}" @section="#{@section}">) end |
#lookup(name) ⇒ Object
1562 1563 1564 1565 1566 1567 |
# File 'lib/puppet/settings.rb', line 1562 def lookup(name) setting = @section.setting(name) if setting setting.value end end |