[Source]
# File rss/1.0.rb, line 446 def initialize(about=nil) super() @about = about end
# File rss/1.0.rb, line 422 def required_uri ::RSS::URI end
# File rss/1.0.rb, line 451 def to_s(need_convert=true, indent=calc_indent) rv = tag(indent) do |next_indent| [ title_element(false, next_indent), url_element(false, next_indent), link_element(false, next_indent), other_element(false, next_indent), ] end rv = convert(rv) if need_convert rv end
[Validate]