class ExcelxReader
Public Class Methods
new(file)
click to toggle source
Calls superclass method
GenericSheet::new
# File lib/simple-spreadsheet/readers/excelx_reader.rb, line 3 def initialize(file) super @engine = ExcelxExtended.new(file) # Roo end
Public Instance Methods
foreach(sheet, &block)
click to toggle source
# File lib/simple-spreadsheet/readers/excelx_reader.rb, line 8 def foreach(sheet, &block) @engine.foreach(sheet, &block) end