Sha256: a2bc41924c1466f2e9a385aebf5c9df596edb70f1032bd8c66d84fbbc2880994
Contents?: true
Size: 680 Bytes
Versions: 5
Compression:
Stored size: 680 Bytes
Contents
<?xml version="1.0" encoding="UTF-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title><%= @config[:title] %></title> <subtitle></subtitle> <link href="<%= @config.get_feed_permalink %>" /> <updated><%= @articles.first[:date].iso8601 %></updated> <id><%= @config.get_feed_permalink %></id> <% for @article in @articles %> <entry> <title><%= @article.title %></title> <link href="<%= @article.permalink %>" /> <category><%= @article.category %></category> <author> <name><%= @article.author %></name> </author> <id><%= @article.permalink %></id> <updated></updated> <summary><%= @article.summary %></summary> </entry> <% end %> </feed>
Version data entries
5 entries across 5 versions & 1 rubygems