module CsvRecord

Constants

MAJOR
MINOR
PATCH
VERSION

Public Instance Methods

configure() { |self| ... } click to toggle source

Sets the CsvRecord configuration options. Best used by passing a block.

@example Set up configuration options.

CsvRecord.configure do |config|
end

@return [ self ] The CsvRecord object.

# File lib/csv_record.rb, line 15
def configure
  block_given? ? yield(self) : self
end