class CsvReader

Public Class Methods

new(file) click to toggle source
Calls superclass method GenericSheet::new
# File lib/simple-spreadsheet/readers/csv_reader.rb, line 3
def initialize(file)
  super
  @engine = CsvExtended.new(@path) # Roo
end

Public Instance Methods

foreach(sheet, &block) click to toggle source
# File lib/simple-spreadsheet/readers/csv_reader.rb, line 8
def foreach(sheet, &block)
  @engine.foreach(sheet, &block)
end