模块 RSS::Maker::AtomLink
公共实例方法
to_feed(feed, current) 点击切换源代码
# File rss-0.3.1/lib/rss/maker/atom.rb, line 109 def to_feed(feed, current) link = feed.class::Link.new set = setup_values(link) if set current.links << link set_parent(link, current) setup_other_elements(feed) else raise NotSetError.new(self.class.not_set_name, not_set_required_variables) end end
私有实例方法
required_variable_names() 点击切换源代码
# File rss-0.3.1/lib/rss/maker/atom.rb, line 123 def required_variable_names %w(href) end