Skip to content

Instantly share code, notes, and snippets.

@tdreyno
Created July 28, 2012 03:09
Show Gist options
  • Save tdreyno/3191564 to your computer and use it in GitHub Desktop.
Save tdreyno/3191564 to your computer and use it in GitHub Desktop.
xml.instruct!
xml.urlset :xmlns => 'http://www.sitemaps.org/schemas/sitemap/0.9' do
xml.url do
xml.loc "mysite.com"
end
sitemap.resources.each do |r|
xml.url do
xml.loc r.url
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment