I am using Builder::XmlMarkup to produce data structures in XML format for a RESTful API server.
Recently, I discovered a bug where the pretty-printing from Builder::XmlMarkup produced an element full of whitespace text instead of an empty element as it should.
For example, this code:
xml.outertag do
xml.list do
# Some code which loops through a list
end
end
is producing:
<outertag>
<list>
</list>
</outertag>
When the inner list is an empty list, the element must be empty—i.e. <list/> or <list></list>. However the actual XML is a <list> tag filled with a newline and other whitespace.
So, how can I eliminate Builder pretty-printing altogether? Currently, I am thinking of monkey-patching Builder::XmlMarkup so that initialize ignores the :indent parameters; although I'm considering an after_filter as well.
