class OpmlReader::RSS
Attributes
category[R]
html_url[R]
title[R]
xml_url[R]
Public Class Methods
new(title, html_url, xml_url, category = "uncategorized")
click to toggle source
# File lib/opml_reader/rss.rb, line 6 def initialize(title, html_url, xml_url, category = "uncategorized") @title = title @html_url = html_url @xml_url = xml_url @category = category end