module SimpleXlsxReader
Constants
- VERSION
- Zip
Public Class Methods
configuration()
click to toggle source
# File lib/simple_xlsx_reader.rb, line 49 def self.configuration @configuration ||= Struct.new(:catch_cell_load_errors).new.tap do |c| c.catch_cell_load_errors = false end end
open(file_path)
click to toggle source
# File lib/simple_xlsx_reader.rb, line 55 def self.open(file_path) Document.new(file_path).tap(&:sheets) end