class OPMLImport

Attributes

opml[R]
to_hash[R]

Public Class Methods

new(opml_file) click to toggle source
# File lib/argh_ss/opml_import.rb, line 4
def initialize(opml_file)
  file = File.open(opml_file)
  @opml = Nokogiri::XML(file)
end