comparison app/views/tweets/show.atom.builder @ 62:9ab79a764434

Sweet tweet media viewer (image only for now)
author nanaya <me@myconan.net>
date Tue, 01 Dec 2015 01:08:37 +0900
parents 8983c426e256
children 9e673e0fc04e
comparison
equal deleted inserted replaced
61:0d665b51442d 62:9ab79a764434
3 feed.updated @tweets.first.try(:created_at) || Time.at(0) 3 feed.updated @tweets.first.try(:created_at) || Time.at(0)
4 4
5 @tweets.each do |tweet| 5 @tweets.each do |tweet|
6 feed.entry tweet, :url => tweet.uri, :updated => tweet.created_at do |entry| 6 feed.entry tweet, :url => tweet.uri, :updated => tweet.created_at do |entry|
7 entry.title tweet.created_at.rfc2822 7 entry.title tweet.created_at.rfc2822
8 entry.content auto_link(tweet.text), :type => "html" 8 entry.content render(:partial => "tweet", :formats => :html, :locals => { :tweet => tweet }), :type => "html"
9 entry.author do |author| 9 entry.author do |author|
10 author.name tweet.user.screen_name 10 author.name tweet.user.screen_name
11 end 11 end
12 end 12 end
13 end 13 end