9 lines
183 B
Ruby
9 lines
183 B
Ruby
xml.instruct! :xml, :version => "1.0"
|
|
|
|
# basic attributes
|
|
|
|
xml.osm(OSM::API.new.xml_root_attributes) do |osm|
|
|
@changesets.each do |changeset|
|
|
osm << render(changeset)
|
|
end
|
|
end
|