Remote empty sections before joining them together

Previously, a comma was being printed on the last line of every section, even if
that section did not contribute any rows to the formatted output (e.g., no rows
within that section had the tags needed to be output during this run). When such
a zero-row section happens, it results in an line with only a comma on it, which
is not valid json. This can make incremental adjustment of the jquery files
rather tedious, even when using gui tools to quickly reject changes.
This commit is contained in:
Matthew Abbott 2016-03-31 21:15:22 -05:00 committed by Sebastian Ludwig
parent 50b1e90f8f
commit 06cd167f2b

View file

@ -50,6 +50,7 @@ module Twine
def format_sections(twine_file, lang)
sections = twine_file.sections.map { |section| format_section(section, lang) }
sections.delete_if &:empty?
sections.join(",\n\n")
end