Sha256: 14889384a6f077726f1a8adb7130c95c4ad4ddf619253d0da7731d89d8085cde
Contents?: true
Size: 772 Bytes
Versions: 2
Compression:
Stored size: 772 Bytes
Contents
<% # NOTE: this file depends on constants defined in Rakefile require 'history' require 'date' require 'time' %> <?xml version="1.0" encoding="utf-8"?> <rss version="2.0"> <channel> <title><%= PROJECT_NAME %></title> <link><%= PROJECT_URL %></link> <description><%= PROJECT_DETAIL %></description> <% @history.each do |entry| link = HISTORY_URL + '#' + entry['Version'].to_html_anchor stamp = Time.parse entry['Date'].to_s rfc822 = stamp.strftime "%a, %d %b %Y 00:00:00 %Z" %> <item> <title>Version <%= entry['Version'] %> released</title> <link><%= link %></link> <guid><%= link %></guid> <description><%=ERB::Util.h entry.to_html %></description> <pubDate><%= rfc822 %></pubDate> </item> <% end %> </channel> </rss>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-vpi-16.0.0 | doc/rss.erb |
ruby-vpi-16.0.1 | doc/rss.erb |