Method: ConfigToolkit::BaseConfig#to_s
- Defined in:
- lib/configtoolkit/baseconfig.rb
#to_s ⇒ Object
Returns:
String representation of self
1193 1194 1195 1196 1197 1198 1199 1200 |
# File 'lib/configtoolkit/baseconfig.rb', line 1193 def to_s string_stream = StringIO.new() writer = PrettyPrintWriter.new(string_stream) dump(writer) return string_stream.string() end |