Files
growstuff/app/views/updates/index.rss.builder
Skud 4e3dff25f6 Standardised RSS feed titles and removed descriptions.
The descriptions were just repeating the titles anyway.
2012-11-12 17:36:28 +11:00

19 lines
484 B
Ruby

xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0" do
xml.channel do
xml.title "Growstuff - Recent updates from all members"
xml.link updates_url
for update in @recent_updates
xml.item do
xml.author update.user.username
xml.title update.subject
xml.description update.body
xml.pubDate update.created_at.to_s(:rfc822)
xml.link update_url(update)
xml.guid update_url(update)
end
end
end
end