Method: CFPropertyList::CFDictionary#to_plain
- Defined in:
- lib/cfpropertylist/rbCFTypes.rb
#to_plain(plist) ⇒ Object
320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/cfpropertylist/rbCFTypes.rb', line 320 def to_plain(plist) str = "{ " cfstr = CFString.new() @value.each do |k,v| cfstr.value = k str << cfstr.to_plain(plist) + " = " + v.to_plain(plist) + "; " end str << "}" end |