Flowdock
class
Importance_1
v1_8_6_287 - Show latest stable - 0 notes - Superclass: Object

CSV formatted string/stream writer.

EXAMPLE

  Write rows to 'csvout' file.

  outfile = File.open('csvout', 'wb')
  CSV::Writer.generate(outfile) do |csv|
    csv << ['c1', nil, '', '"', "\r\n", 'c2']
    ...
  end

  outfile.close
Show files where this class is defined (1 file)
Register or log in to add new notes.