annotate 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 | 
 | rev | line source | 
  
| 15 | 1 atom_feed do |feed| | 
|  | 2   feed.title "#{@user.name} (@#{@user.screen_name})" | 
|  | 3   feed.updated @tweets.first.created_at | 
|  | 4 | 
|  | 5   @tweets.each do |tweet| | 
|  | 6     feed.entry tweet, :url => tweet.uri, :updated => tweet.created_at do |entry| | 
|  | 7       entry.title tweet.created_at.rfc2822 | 
|  | 8       entry.content auto_link(tweet.text), :type => "html" | 
|  | 9       entry.author do |author| | 
|  | 10         author.name tweet.user.screen_name | 
|  | 11       end | 
|  | 12     end | 
|  | 13   end | 
|  | 14 end |