Created
January 25, 2010 10:46
-
-
Save wjessop/285786 to your computer and use it in GitHub Desktop.
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
xml.instruct! | |
xml.declare! :DOCTYPE, :plist, :PUBLIC, "-//Apple Computer//DTD PLIST 1.0//EN", "http://www.apple.com/DTDs/PropertyList-1.0.dtd" | |
xml.plist("version" => 1.0) do |plist| | |
plist.dict do |dict| | |
Things.find_in_batches do |things| | |
things.each do |thing| | |
dict.key thing.id | |
dict.array do |array| | |
array.string thing.name | |
array.string thing.address | |
array.integer thing.number_of_frogs | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment