Created
June 5, 2011 18:53
-
-
Save fender21/1009273 to your computer and use it in GitHub Desktop.
csv help!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :address do | |
task :import do | |
file_name = 'data.txt' | |
puts 'Started Importing' | |
require "csv" | |
CSV.foreach(file_name, :quote_char => '"', :col_sep =>'\t', :row_sep =>:auto) do |row| | |
puts row[0] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment