method

new

ruby latest stable - Class: CSV::FieldsConverter

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

new(options={})
public

No documentation available.

# File lib/csv/fields_converter.rb, line 7
    def initialize(options={})
      @converters = []
      @nil_value = options[:nil_value]
      @empty_value = options[:empty_value]
      @empty_value_is_empty_string = (@empty_value == "")
      @accept_nil = options[:accept_nil]
      @builtin_converters = options[:builtin_converters]
      @need_static_convert = need_static_convert?
    end