Sha256: 6d9137e694210a1f6104f044ca0d07bcfefa3d092a2102770871f999f9e6d261
Contents?: true
Size: 575 Bytes
Versions: 106
Compression:
Stored size: 575 Bytes
Contents
xml.instruct! :xml, :version => "1.0" xml.rss :version => "2.0" do xml.channel do xml.title @category.the_title xml.description @category.the_excerpt xml.link @category.the_url xml.guid @category.the_id xml.items @posts.size for post in @posts.decorate xml.item do xml.title post.the_title xml.description post.the_excerpt xml.pubDate post.the_created_at xml.upDate post.the_updated_at xml.link post.the_url xml.guid post.the_id xml.thumb post.the_thumb_url end end end end
Version data entries
106 entries across 106 versions & 2 rubygems