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
2.3
View on GitHub
# File tmp/rubies/ruby-2.3.8/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