class OoxmlParser::XlsxParser

Basic class for parsing xlsx

Public Class Methods

parse_xlsx(path_to_file) click to toggle source

Parse xlsx file @param path_to_file [String] file path @return [XLSXWorkbook] result of parse

# File lib/ooxml_parser/xlsx_parser/xlsx_parser.rb, line 11
def self.parse_xlsx(path_to_file)
  Parser.parse_format(path_to_file) do
    XLSXWorkbook.new.parse
  end
end