Class: Puppet::Parser::Util::Config
- Inherits:
-
Object
- Object
- Puppet::Parser::Util::Config
- Includes:
- InstanceMethods
- Defined in:
- lib/puppet/parser/util/erly.rb
Instance Method Summary collapse
-
#initialize(value) ⇒ Config
constructor
A new instance of Config.
- #pp(level = 0) ⇒ Object
- #to_s ⇒ Object
Methods included from InstanceMethods
Constructor Details
#initialize(value) ⇒ Config
Returns a new instance of Config.
161 162 163 |
# File 'lib/puppet/parser/util/erly.rb', line 161 def initialize(value) @config = convert(value) end |
Instance Method Details
#pp(level = 0) ⇒ Object
169 170 171 |
# File 'lib/puppet/parser/util/erly.rb', line 169 def pp(level=0) @config.pp(level) + "." end |
#to_s ⇒ Object
165 166 167 |
# File 'lib/puppet/parser/util/erly.rb', line 165 def to_s @config.to_s + "." end |