method

new_taxo_topic

new_taxo_topic()
public

No documentation available.

# File lib/rss/maker/taxonomy.rb, line 111
        def new_taxo_topic
          taxo_topic = self.class::TaxonomyTopic.new(self)
          @taxo_topics << taxo_topic
          if block_given?
            yield taxo_topic
          else
            taxo_topic
          end
        end