Skip to content

Instantly share code, notes, and snippets.

@coderhs
Created November 20, 2012 05:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coderhs/4116212 to your computer and use it in GitHub Desktop.
Save coderhs/4116212 to your computer and use it in GitHub Desktop.
Create CSV files
require 'csv'
CSV.open("file_name.csv",'w") do |csv|
csv << "what,ever,you,want,to,give,as,input"
csv << "its,easy"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment