Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/cfpropertylist/rbCFPropertyList.rb
Instance Method Summary collapse
-
#to_plist(options = {}) ⇒ Object
convert a hash to plist format.
Instance Method Details
#to_plist(options = {}) ⇒ Object
convert a hash to plist format
440 441 442 443 444 445 446 |
# File 'lib/cfpropertylist/rbCFPropertyList.rb', line 440 def to_plist(={}) [:plist_format] ||= CFPropertyList::List::FORMAT_BINARY plist = CFPropertyList::List.new plist.value = CFPropertyList.guess(self, ) plist.to_str([:plist_format], ) end |