Guest User

Untitled

a guest
Aug 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. FasterCSV.foreach("#{File.join(zip_dir, 'sales.csv')}",
  2. :quote_char => '"',
  3. :col_sep => ';',
  4. :row_sep => :auto
  5. ) do |row|
  6. puts row[0]
  7. end
Add Comment
Please, Sign In to add comment