Created
May 31, 2010 23:47
-
-
Save mustardamus/420393 to your computer and use it in GitHub Desktop.
This file contains 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
get "/rss.xml" do | |
builder :rss | |
end |
This file contains 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 "Mustardamus" | |
xml.description "Some words from a dude addicted to mustard." | |
xml.link "http://mustardamus.com" | |
ARTICLES.each do |article| | |
xml.item do | |
xml.title article[:title] | |
xml.link "http://mustardamus.com/articles/#{article[:url]}" | |
xml.description { xml.cdata!("<a href='http://mustardamus.com/articles/#{article[:url]}'>Go to article »</a>") } | |
xml.pubDate article[:created].rfc822 | |
xml.guid "http://mustardamus.com/articles/#{article[:url]}" | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment