In Files

  • csv.rb

CSV::BasicWriter

Public Class Methods

new(str_or_writable, fs = ',', rs = nil) click to toggle source
 
               # File csv.rb, line 714
def initialize(str_or_writable, fs = ',', rs = nil)
  @fs = fs
  @rs = rs
  @dev = str_or_writable
  @close_on_terminate = false
end
            

Public Instance Methods

close_on_terminate() click to toggle source

Tell this writer to close the IO when terminated (Triggered by invoking CSV::Writer#close).

 
               # File csv.rb, line 723
def close_on_terminate
  @close_on_terminate = true
end