I have an array of arrays, where each inner array is a row of data.
I would like to write this as a .csv file.
I am aware of functions in languages other than Ruby that can write a csv in one short function, e.g. R has write.csv(object, "filename.csv")
Is there anything comparable in ruby?
Note: I have used this method, however, I would like something (much) sharper if such a method exists