Sha256: f62b1f821b77f2103c1aaed1863ea57a0cc24bb888d6f15bf18958651c316811
Contents?: true
Size: 336 Bytes
Versions: 1
Compression:
Stored size: 336 Bytes
Contents
# encoding: utf-8 module OpmlReader class RSS attr_reader :title, :html_url, :xml_url, :category def initialize(title, html_url, xml_url, category = "uncategorized") @title = title @html_url = html_url @xml_url = xml_url @category = category end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opml_reader-0.1.0 | lib/opml_reader/rss.rb |