In Files

  • rss/maker/base.rb

Parent

Included Modules

Class/Module Index [+]

Quicksearch

RSS::Maker::XMLStyleSheets::XMLStyleSheet

Public Instance Methods

have_required_values?() click to toggle source
 
               # File rss/maker/base.rb, line 234
def have_required_values?
  @href and @type
end
            
to_rss(rss) click to toggle source
 
               # File rss/maker/base.rb, line 225
def to_rss(rss)
  xss = ::RSS::XMLStyleSheet.new
  guess_type_if_need(xss)
  set = setup_values(xss)
  if set
    rss.xml_stylesheets << xss
  end
end