Sha256: c5695faa527b958ebc838f43540c52b2b21b3641173f716ec290a47e6322379e
Contents?: true
Size: 372 Bytes
Versions: 4
Compression:
Stored size: 372 Bytes
Contents
atom_feed do |feed| feed.title(BlogBasic::BlogConf.data['blog_name']) feed.updated(@blog_posts.first.created_at) if @blog_posts.first @blog_posts.each do |post| feed.entry(post) do |entry| entry.title(post.title) entry.content(post.parsed_body, :type => 'html') #entry.author { |author| author.name(post.user_name(true)) } end end end
Version data entries
4 entries across 4 versions & 1 rubygems