class Overapp::Project::Write

Attributes

output_path[RW]
project[RW]

Public Instance Methods

combined_files() click to toggle source
# File lib/overapp/project/write.rb, line 11
def combined_files
  instance.combined_files
end
write!() click to toggle source
# File lib/overapp/project/write.rb, line 15
def write!
  raise "no combined files" unless combined_files
  Overapp::Git.commit(output_path,"Overlay Created") do
    combined_files.write_to!(output_path)
  end
end