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.
1593 1594 1595 1596 |
# File 'lib/puppet/settings.rb', line 1593 def initialize(name, section) @name = name @section = section end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
1591 1592 1593 |
# File 'lib/puppet/settings.rb', line 1591 def name @name end |
Instance Method Details
#include?(name) ⇒ Boolean
1598 1599 1600 |
# File 'lib/puppet/settings.rb', line 1598 def include?(name) !@section.setting(name).nil? end |
#inspect ⇒ Object
1609 1610 1611 |
# File 'lib/puppet/settings.rb', line 1609 def inspect %Q(<#{self.class}:#{object_id} @name="#{@name}" @section="#{@section}">) end |
#lookup(name) ⇒ Object
1602 1603 1604 1605 1606 1607 |
# File 'lib/puppet/settings.rb', line 1602 def lookup(name) setting = @section.setting(name) if setting setting.value end end |