Mercurial > rsstweet
view app/views/tweets/show.atom.builder @ 73:e9a6019a34ea
Avoid using constant. Use global instead =D
author | nanaya <me@myconan.net> |
---|---|
date | Fri, 13 May 2016 04:52:20 +0900 |
parents | 1161ad2a4390 |
children | 448a368f7344 |
line wrap: on
line source
atom_feed do |feed| feed.title "#{@user.name} (@#{@user.screen_name})" feed.updated @tweets.first.try(:created_at) || Time.at(0) @tweets.each do |tweet| feed.entry tweet, :url => tweet.uri, :updated => tweet.created_at do |entry| entry.title tweet.created_at.rfc2822 entry.content render(:partial => "tweet", :formats => :html, :locals => { :tweet => tweet }), :type => "html" entry.author do |author| author.name tweet.user.screen_name end end end end