Class: ExcelReader
- Inherits:
-
SpreadsheetReader
- Object
- GenericSheet
- SpreadsheetReader
- ExcelReader
- Includes:
- RooModule
- Defined in:
- lib/simple_spreadsheet/readers/excel_reader.rb
Instance Method Summary (collapse)
-
- (ExcelReader) initialize(file)
constructor
A new instance of ExcelReader.
Methods included from RooModule
#cell, #celltype, #default_sheet=, #first_row, #last_row, #sheets
Methods inherited from SpreadsheetReader
#cell, #celltype, #default_sheet=, #first_row, #last_row, #parse, #sheets
Methods inherited from GenericSheet
Constructor Details
- (ExcelReader) initialize(file)
A new instance of ExcelReader
5 6 7 8 |
# File 'lib/simple_spreadsheet/readers/excel_reader.rb', line 5 def initialize(file) super @engine = ExcelExtended.new(@path) # Roo end |