Created
December 1, 2013 17:55
-
-
Save mindreframer/7738455 to your computer and use it in GitHub Desktop.
generate xml with nokogiri
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
@objects = [1,2,3] | |
builder = Nokogiri::XML::Builder.new do |xml| | |
xml.root do | |
xml.objects do | |
@objects.each do |o| | |
xml.object do | |
xml.send('ng-wizard', {:model => "user", :field => "email"}, " ") | |
end | |
end | |
end | |
end | |
end | |
puts builder.to_xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment