Skip to content

Instantly share code, notes, and snippets.

@goodjob1114
Created November 27, 2015 09:01
Show Gist options
  • Save goodjob1114/b9f9541e2895c189c387 to your computer and use it in GitHub Desktop.
Save goodjob1114/b9f9541e2895c189c387 to your computer and use it in GitHub Desktop.
read csv and write to file (append)
IO.foreach("./test.csv") do |line|
# Remove trailing whitespace.
line.chomp!
# Split on comma.
values = line.split(",")
# Write results.
IO.write("/tmp/testfile", values.join("+") << "... " << String(values.length) << "\n", mode: 'a')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment