class Genit::RssFeedMeta
Meta data of an RSS Field
Public Class Methods
fill(feed, config)
click to toggle source
# File lib/genit/project/rss_feed.rb, line 38 def self.fill feed, config channel = feed.channel channel.title = config[:rss_title] channel.link = config[:address] channel.description = config[:rss_description] feed.items.do_sort = true end