view app/views/tweets/show.atom.erb @ 127:05216b67d01d

Update gems
author nanaya <me@nanaya.pro>
date Fri, 08 Sep 2017 21:17:53 +0900
parents 5075b243d7d0
children ee5876dd9b45
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
  <id><%= atom_id(@user.id) %></id>

  <link rel="alternate" type="text/html" href="<%= request.protocol %><%= request.host_with_port %>" />
  <link rel="self" type="application/atom+xml" href="<%= request.url %>" />

  <title><%= "#{@user.name} (#{@user.screen_name})" %></title>
  <icon><%= @user.profile_image_url_https %></icon>
  <logo><%= @user.profile_image_url_https %></logo>

  <updated><%= (@tweets.first.try(:created_at) || Time.at(0)).xmlschema %></updated>

  <%= render :partial => "tweet", :collection => @tweets, :cached => true %>
</feed>