I am looping through a set of tag names in an array, and I want to print each one using builder without resorting to the manual XML of the “<<” method.
I thought that:
builder = Nokogiri::XML::Builder.new do |xml|
for tag in tags
xml.tag! tag, someval
end
end
would do it, but it just creates tags with the name “tag”, and puts the tag variable as the text value of the element.
Can anyone help? This seems like it should be relatively simple, I have just had trouble finding the answer on search engines. I am probably not asking the question the right way.
Try the following. I added a root node as Nokogiri requires one if I’m not mistaken.