| Class | RSS::Maker::TaxonomyTopicModel::TaxonomyTopicsBase |
| In: |
lib/rss/maker/taxonomy.rb
|
| Parent: | Object |
# File lib/rss/maker/taxonomy.rb, line 111
111: def new_taxo_topic
112: taxo_topic = self.class::TaxonomyTopic.new(self)
113: @taxo_topics << taxo_topic
114: if block_given?
115: yield taxo_topic
116: else
117: taxo_topic
118: end
119: end