In Files

  • rss-0.2.9/lib/rss/rss.rb

Methods

Class/Module Index [+]

Quicksearch

RSS::MissingTagError

Since RSS is based on XML, it must have opening and closing tags that match. If they don't, a MissingTagError will be raised.

Attributes

parent[R]
tag[R]

Public Class Methods

new(tag, parent) click to toggle source
 
               # File rss-0.2.9/lib/rss/rss.rb, line 97
def initialize(tag, parent)
  @tag, @parent = tag, parent
  super("tag <#{tag}> is missing in tag <#{parent}>")
end
            
There is an updated format of the API docs for this version here.