Generating ERB templates with XMLBuilder

Is it possible to get XMLBuilder to stop escaping entities for just
one tag?

I'm trying to generate an ERB template that generates XML:

xml.toys do
  xml.toy do
    xml.name "<%= name %>
  end
end

The builder outputs the proper xml, but it escapes the template.