From 9277e070fe0c1343155c5bba645813f5933bec2c Mon Sep 17 00:00:00 2001 From: Kevin Wood Date: Tue, 20 Mar 2012 20:36:01 -0700 Subject: [PATCH] Edited Apple formatter to more closely match the Apple-generated syntax --- lib/twine/formatters/apple.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/twine/formatters/apple.rb b/lib/twine/formatters/apple.rb index 5912b87..7a63bdd 100644 --- a/lib/twine/formatters/apple.rb +++ b/lib/twine/formatters/apple.rb @@ -79,7 +79,7 @@ module Twine if !printed_section f.puts '' if section.name && section.name.length > 0 - f.puts "/* #{section.name} */" + f.print "/* #{section.name} */\n\n" end printed_section = true end @@ -95,13 +95,14 @@ module Twine comment = comment.gsub('*/', '* /') end - f.print "\"#{key}\" = \"#{value}\";" if comment && comment.length > 0 - f.print " /* #{comment} */\n" + f.print "/* #{comment} */\n" else f.print "\n" end - end + + f.print "\"#{key}\" = \"#{value}\";\n\n" + end end end end