Support for the Ruby 2.4 series has ended. See here for reference.

In Files

  • rss/rss.rb

Methods

Class/Module Index [+]

Quicksearch

RSS::MissingAttributeError

Certain attributes are required on specific tags in an RSS feed. If a feed is missing one of these attributes, a MissingAttributeError is raised.

Attributes

attribute[R]
tag[R]

Public Class Methods

new(tag, attribute) click to toggle source
 
               # File rss/rss.rb, line 123
def initialize(tag, attribute)
  @tag, @attribute = tag, attribute
  super("attribute <#{attribute}> is missing in tag <#{tag}>")
end