It's easy enough to read a CSV file into an array with Ruby but I can't find any good documentation on how to write an array into a CSV file. Can anyone tell me how to do this?
I'm using Ruby 1.9.2 if that matters.
|
|
To a file:
To a string:
Here's the current documentation on CSV: http://ruby-doc.org/stdlib/libdoc/csv/rdoc/index.html |
|||||||||
|
|
Struggling with this myself. This is my take: https://gist.github.com/2639448:
|
|||
|
|
To continuously add to a CSV file without having it get overwritten each time:
Also note that the first row can be your 'headers', as in:
Personally, I prefer to add the headers manually to the csv file and then let ruby do the rest. |
|||
|