diff --git a/lib/twine/formatters/abstract.rb b/lib/twine/formatters/abstract.rb index ad70f3a..6e96a1d 100644 --- a/lib/twine/formatters/abstract.rb +++ b/lib/twine/formatters/abstract.rb @@ -103,7 +103,7 @@ module Twine header = format_header(lang) result = "" - result += header + "\n" if header + result += header if header result += format_sections(processed_twine_file, lang) end @@ -130,7 +130,7 @@ module Twine if section.name && section.name.length > 0 section_header = format_section_header(section) - result += "\n#{section_header}" if section_header + result += "#{section_header}" if section_header end definitions.map! { |definition| format_definition(definition, lang) } diff --git a/lib/twine/formatters/android.rb b/lib/twine/formatters/android.rb index 01468cf..34adbed 100644 --- a/lib/twine/formatters/android.rb +++ b/lib/twine/formatters/android.rb @@ -94,33 +94,33 @@ module Twine end def format_header(lang) - "\n\n\n" + "\n" end def format_sections(twine_file, lang) - result = '' + result = "\n" result += super + "\n" - result += "\n" + result += "" end def format_section_header(section) - "\t" + " " end def format_comment(definition, lang) - "\t\n" if definition.comment + " \n" if definition.comment end def key_value_pattern - "\t%{value}" + " %{value}" end def format_plural_keys(key, plural_hash) - result = "\t\n" - result += plural_hash.map{|quantity,value| "\t#{' ' * 2}#{escape_value(value)}"}.join("\n") - result += "\n\t" + result = " \n" + result += plural_hash.map{|quantity,value| " #{' ' * 4}#{escape_value(value)}"}.join("\n") + result += "\n " end def gsub_unless(text, pattern, replacement) diff --git a/lib/twine/formatters/apple.rb b/lib/twine/formatters/apple.rb index 62dfcc0..47dbc2b 100644 --- a/lib/twine/formatters/apple.rb +++ b/lib/twine/formatters/apple.rb @@ -68,15 +68,15 @@ module Twine end def format_section_header(section) - "/********** #{section.name} **********/\n" + "\n\n/********** #{section.name} **********/\n" end def key_value_pattern - "\"%{key}\" = \"%{value}\";\n" + "\"%{key}\" = \"%{value}\";" end def format_comment(definition, lang) - "/* #{definition.comment.gsub('*/', '* /')} */\n" if definition.comment + "\n/* #{definition.comment.gsub('*/', '* /')} */\n" if definition.comment end def format_key(key) diff --git a/lib/twine/formatters/apple_plural.rb b/lib/twine/formatters/apple_plural.rb index c53f02b..1c1efda 100644 --- a/lib/twine/formatters/apple_plural.rb +++ b/lib/twine/formatters/apple_plural.rb @@ -28,7 +28,7 @@ module Twine header = "\n" header += "<\?xml version=\"1.0\" encoding=\"UTF-8\"\?>\n" header += "\n" - header += "\n" + header += "\n\n" end def format_section_header(section)