class Xcodeproj::Config

def save_as(pathname)

Parameters:
  • pathname (Pathname) -- The file that the data should be written to.

Returns:
  • (void) - Writes the serialized representation of the internal data
def save_as(pathname)
  pathname.open('w') { |file| file << to_s }
end