Sha256: 63cce4af9a5687f053fcd9497a3110aa3005da7a6ce29bd789c10cc324548a9e
Contents?: true
Size: 603 Bytes
Versions: 5
Compression:
Stored size: 603 Bytes
Contents
# http://cyber.law.harvard.edu/rss/rss.html xml.instruct! :xml, version: "1.0" xml.rss version: "2.0" do xml.channel do xml.generator "Fat Free CRM v#{FatFreeCRM::VERSION::STRING}" xml.link root_url xml.pubDate Time.now.to_s(:rfc822) xml.title t(:activities) @activities.each do |activity| xml.item do xml.author activity.user.try(:full_name) # xml.guid activity.id # xml.link nil xml.pubDate activity.created_at.to_s(:rfc822) xml.title activity_title(activity) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems