Flowdock
method

new

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: CSV::Writer
new(output, options) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/csv/writer.rb, line 13
    def initialize(output, options)
      @output = output
      @options = options
      @lineno = 0
      prepare
      if @options[:write_headers] and @headers
        self << @headers
      end
      @fields_converter = @options[:fields_converter]
    end
Register or log in to add new notes.