csv_lazy

Install

Add to your Gemfile and bundle

gem "csv_lazy"

Usage

Example

CsvLazy.new(io: StringIO.new(csv_content)) do |row|
  puts "Row: #{row}" #=> [1, 2, 3]
end

With a lot of options

CsvLazy.new(io: some_io, col_sep: ",", row_sep: "\r\n", headers: true, quote_char: "'", debug: false) do |row|
end

Description goes here.

Contributing to csv_lazy

Copyright © 2012 Kasper Johansen. See LICENSE.txt for further details.