Commit 4d7d4e6a authored by Marius Rackwitz's avatar Marius Rackwitz

Use CLIntegracon for integration specs

parent 19271996
This diff is collapsed.
require "xcodeproj"
require "yaml"
class Xcodeproj::Project
def to_yaml
pretty_print_output = pretty_print
sections = []
sorted_keys = ["File References", "Targets", "Build Configurations"]
sorted_keys.each do |key|
yaml = { key => pretty_print_output[key] }.to_yaml
sections << yaml
end
(sections * "\n\n").gsub!("---", '')
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment