Module: RSS::Maker::TaxonomyTopicsModel

Defined Under Namespace

Classes: TaxonomyTopicsBase

Class Method Summary collapse

Class Method Details

.append_features(klass) ⇒ Object



9
10
11
12
13
14
# File 'lib/rss/maker/taxonomy.rb', line 9

def self.append_features(klass)
  super

  klass.def_classed_element("#{RSS::TAXO_PREFIX}_topics",
                            "TaxonomyTopics")
end

.install_taxo_topics(klass) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/rss/maker/taxonomy.rb', line 16

def self.install_taxo_topics(klass)
  klass.module_eval("    class TaxonomyTopics < TaxonomyTopicsBase\n      def to_feed(feed, current)\n        if current.respond_to?(:taxo_topics)\n          topics = current.class::TaxonomyTopics.new\n          bag = topics.Bag\n          @resources.each do |resource|\n            bag.lis << RDF::Bag::Li.new(resource)\n          end\n          current.taxo_topics = topics\n        end\n      end\n    end\n", __FILE__, __LINE__ + 1)
end