This means that you need to add an underscore after the tag name.
Just for clarification with an example for someone who can search for it (like I was):
builder = Nokogiri::XML::Builder.new do |xml|
xml.questions {
xml.question {
xml.text_ "What is your name?"
}
xml.question {
xml.text_ "What is your favourite colour?"
}
}
end
source
share