Skip to content

Instantly share code, notes, and snippets.

@harshalbhakta
Created September 23, 2014 04:48
Show Gist options
  • Select an option

  • Save harshalbhakta/6d1704cfcbb661e1ec2c to your computer and use it in GitHub Desktop.

Select an option

Save harshalbhakta/6d1704cfcbb661e1ec2c to your computer and use it in GitHub Desktop.
Read CSV file in Ruby.
require 'csv'
filename = ARGV[0]
CSV.foreach(filename) do |row|
puts row
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment