class CamtParser::File

Public Class Methods

parse(path) click to toggle source
# File lib/camt_parser/file.rb, line 3
def self.parse(path)
  data = ::File.read(path)
  CamtParser::String.parse(data)
end