Created
November 16, 2011 18:43
-
-
Save warlley/1370935 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, :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