# HasherizeCsv [![Build Status](https://travis-ci.org/bbradbury/hasherize_csv.png)](https://travis-ci.org/bbradbury/hasherize_csv) Dead simple CSV parsing, with configurable regex selectors if required. Reads line-by-line, so you can parse big CSV files without running out of memory. ### Simple case Given sample_csv.csv ```csv Col1,Col2,Col3 Val1,Val2,Val3 Val4,Val5,Val6 ``` and ```ruby require 'hasherize_csv' @f = File.new("sample_csv.csv") @csv = HasherizeCsv::Csv.new(@f) @csv.each do |hash| puts hash.inspect end ``` The output will be ``` {'Col1' => 'Val1', 'Col2' => 'Val2', 'Col3' => 'Val3'} {'Col1' => 'Val4', 'Col2' => 'Val5', 'Col3' => 'Val6'} ```