Module: SimpleCsvReader

Defined in:
lib/simple_csv_reader.rb,
lib/simple_csv_reader/reader.rb,
lib/simple_csv_reader/version.rb

Defined Under Namespace

Classes: Reader

Constant Summary collapse

VERSION =
'0.6.0'

Class Method Summary collapse

Class Method Details

.read(path, headers, **options, &block) ⇒ Object



7
8
9
# File 'lib/simple_csv_reader.rb', line 7

def read(path, headers, **options, &block)
  Reader.new(path, headers, **options).each(&block)
end