Sha256: 2b2aa1af56544d72af2a69aa37e49453693530927e47df9e1207f2434153631d
Contents?: true
Size: 799 Bytes
Versions: 2
Compression:
Stored size: 799 Bytes
Contents
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title><%= title %> Feed</title> <% if url %><link href="<%= url %>" rel="self" /><% end %> <% if homepage %><link href="<%= homepage %>" /><% end %> <id><% if vcs.uuid %>urn:uuid:<%= vcs.uuid %><% else %><%= vcs.repository %><% end %></id> <updated><%= Time.now %></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.message.lines.first %></title> <id><%= entry.revision %></id> <author><%= entry.author %></author> <updated><%= entry.date %></updated> <summary type="html"><%= h entry.message %></summary> </entry> <% end %> </feed>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vclog-1.6.0 | lib/vclog/templates/changelog.atom.erb |
vclog-1.5.0 | lib/vclog/templates/changelog.atom |