module RixmlDocument

Public Class Methods

parse(xml) click to toggle source
# File lib/rixml_document.rb, line 6
def self.parse(xml)
  RixmlDocument::Research.parse(xml)
end
parse_from_file(filename) click to toggle source
# File lib/rixml_document.rb, line 10
def self.parse_from_file(filename)
  xml = File.read(filename)
  parse(xml)
end