Sha256: c8d4edb0ae3bb496ce72e3ef0a973e61ecbe1405a8a964cb84a2cccdc06b295c
Contents?: true
Size: 640 Bytes
Versions: 101
Compression:
Stored size: 640 Bytes
Contents
xml.instruct! xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do xml.title @config[:title] xml.id @config[:url] xml.updated articles.first[:date].iso8601 unless articles.empty? xml.author { xml.name @config[:author] } articles.each do |article| xml.entry do xml.title article.title xml.link "rel" => "alternate", "href" => article.url xml.id article.url xml.published article[:date].iso8601 xml.updated article[:date].iso8601 xml.author { xml.name @config[:author] } xml.summary article.summary, "type" => "html" xml.content article.body, "type" => "html" end end end
Version data entries
101 entries across 80 versions & 15 rubygems
Version | Path |
---|---|
toto-0.1.0 | test/templates/feed.builder |