CSV::IOReader (Class)

In: csv.rb
Parent: Reader

Methods

Public Class methods

[Source]

# File csv.rb, line 602
    def initialize(io, col_sep = ?,, row_sep = nil)
      @io = io
      @io.binmode if @io.respond_to?(:binmode)
      @col_sep = col_sep
      @row_sep = row_sep
      @dev = CSV::IOBuf.new(@io)
      @idx = 0
      if @dev[0] == 0xef and @dev[1] == 0xbb and @dev[2] == 0xbf
        @idx += 3
      end
      @close_on_terminate = false
    end

Public Instance methods

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

[Source]

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

[Validate]