Flowdock
setup_items(rss) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rss/maker/1.0.rb, line 53
        def setup_items(rss)
          items = RDF::Channel::Items.new
          seq = items.Seq
          @maker.items.normalize.each do |item|
            seq.lis << RDF::Channel::Items::Seq::Li.new(item.link)
          end
          rss.channel.items = items
        end
Register or log in to add new notes.