Class
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
Read
No documentation available
Read
No documentation available
Class Methods
lib/rss/rss.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/rss.rb, line 102
def initialize(tag, parent)
@tag, @parent = tag, parent
super("tag <#{tag}> is missing in tag <#{parent}>")
end
No documentation available