Sha256: 88af211fdf53647cff7de90ee37f05f744fcae2bf9cd4e41b1a2ccdda6861d9b

Contents?: true

Size: 955 Bytes

Versions: 6

Compression:

Stored size: 955 Bytes

Contents

<?xml version="1.0"?>

<feed xmlns="http://www.w3.org/2005/Atom">

  <title><%= title %></title>

  <% if url %><link href="<%= url %>" /><% end %>

  <% if homepage %><link href="<%= homepage %>" /><% end %>

  <id><% if repo.uuid %>urn:uuid:<%= repo.uuid %><% else %><%= repo.repository %><% end %></id>

  <updated><%= Time.now.xmlschema %></updated>

  <author>

    <name><%= user %></name>

    <email><%= email %></email>

  </author>

<% changelog.changes.sort{|a,b| b.date <=> a.date}.each do |entry| %>

  <entry>

    <title><%= h entry.summary %></title>

    <id><%= url %>#<%= entry.id %></id>

    <author><%= entry.author %></author>

    <updated><%= entry.date.xmlschema %></updated>

    <content type="xhtml">

      <div xmlns="http://www.w3.org/1999/xhtml">

        <%= entry.message %><br/>

        <%= entry.author %> <%= entry.date.strftime('%Y-%m-%d %H:%M:%S') %>

      </div>

    </content>

  </entry>

<% end %>

</feed>

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
rubycut-vclog-1.9.5.1 lib/vclog/templates/changelog.atom.erb
rubycut-vclog-1.9.5 lib/vclog/templates/changelog.atom.erb
rubycut-vclog-1.9.4 lib/vclog/templates/changelog.atom.erb
vclog-1.9.2 lib/vclog/templates/changelog.atom.erb
vclog-1.9.1 lib/vclog/templates/changelog.atom.erb
vclog-1.9.0 lib/vclog/templates/changelog.atom.erb