Method: Puppet::Util::IniConfig::PhysicalFile#format
- Defined in:
- lib/puppet/util/inifile.rb
#format ⇒ Object
211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'lib/puppet/util/inifile.rb', line 211 def format text = ''.dup @contents.each do |content| if content.is_a? Section text << content.format else text << content end end text end |