Class
Class Methods
::
lib/rss/1.0.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/1.0.rb, line 406
def initialize(*args)
if Utils.element_initialize_arguments?(args)
super
else
super()
self.about = args[0]
end
end
No documentation available
::
lib/rss/1.0.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/1.0.rb, line 384
def required_uri
::RSS::URI
end
No documentation available
Instance Methods
lib/rss/1.0.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/1.0.rb, line 416
def maker_target(items)
if items.respond_to?("items")
# For backward compatibility
items = items.items
end
items.new_item
end
No documentation available