Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/rbCFPropertyList.rb

Instance Method Summary collapse

Instance Method Details

#to_plist(options = {}) ⇒ Object

convert an array to plist format



309
310
311
312
313
314
315
# File 'lib/rbCFPropertyList.rb', line 309

def to_plist(options={})
  options[:plist_format] ||= CFPropertyList::List::FORMAT_BINARY

  plist = CFPropertyList::List.new
  plist.value = CFPropertyList.guess(self, options)
  plist.to_str(options[:plist_format])
end