In Files

  • rss/maker/base.rb

Parent

Included Modules

Class/Module Index [+]

Quicksearch

RSS::Maker::XMLStyleSheets

Public Instance Methods

new_xml_stylesheet() click to toggle source
 
               # File rss/maker/base.rb, line 207
def new_xml_stylesheet
  xss = XMLStyleSheet.new(@maker)
  @xml_stylesheets << xss
  if block_given?
    yield xss
  else
    xss
  end
end
            
to_rss(rss) click to toggle source
 
               # File rss/maker/base.rb, line 201
def to_rss(rss)
  @xml_stylesheets.each do |xss|
    xss.to_rss(rss)
  end
end