Skip to content

Instantly share code, notes, and snippets.

@warlley
Created November 16, 2011 18:43
Show Gist options
  • Save warlley/1370935 to your computer and use it in GitHub Desktop.
Save warlley/1370935 to your computer and use it in GitHub Desktop.
xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0" do
xml.channel do
xml.title "Titulo do blog"
xml.description "Este é um blog sobre..."
xml.link posts_url
for post in @posts
xml.item do
xml.title post.title
xml.description post.content
xml.pubDate post.posted_at.to_s(:rfc822)
xml.link post_url(post)
xml.guid post_url(post)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment