class Fission::Metadata

def save

Returns nothing.

metadata.save

Examples

content variable.
Public: Saves a new version of the metadata file with the data in the
def save
  new_content = CFPropertyList::List.new
  new_content.value = CFPropertyList.guess @content
  new_content.save Fission.config['plist_file'],
                   CFPropertyList::List::FORMAT_BINARY
end