diff app/views/tweets/show.atom.builder @ 15:207917e41964

Add tweets~ Feature is now on par with the thing it's replacing.
author edogawaconan <me@myconan.net>
date Fri, 05 Sep 2014 20:37:25 +0900
parents
children 8983c426e256
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/views/tweets/show.atom.builder	Fri Sep 05 20:37:25 2014 +0900
@@ -0,0 +1,14 @@
+atom_feed do |feed|
+  feed.title "#{@user.name} (@#{@user.screen_name})"
+  feed.updated @tweets.first.created_at
+
+  @tweets.each do |tweet|
+    feed.entry tweet, :url => tweet.uri, :updated => tweet.created_at do |entry|
+      entry.title tweet.created_at.rfc2822
+      entry.content auto_link(tweet.text), :type => "html"
+      entry.author do |author|
+        author.name tweet.user.screen_name
+      end
+    end
+  end
+end