mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-27 19:23:59 -04:00
19 lines
484 B
Ruby
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
|