Sha256: cc79e942d1362eb6750182b96926d17b2a2f022dd2b2e4bf63188989b339a254

Contents?: true

Size: 277 Bytes

Versions: 12

Compression:

Stored size: 277 Bytes

Contents

require "English"
require "stringio"

class CSV
  module InputRecordSeparator
    class << self
      if RUBY_VERSION >= "3.0.0"
        def value
          "\n"
        end
      else
        def value
          $INPUT_RECORD_SEPARATOR
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 4 rubygems

Version Path
fluent-plugin-nuopenlineage-light-0.1.0 vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/input_record_separator.rb
fluent-plugin-openlineage-light-0.1.4 vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/input_record_separator.rb
fluent-plugin-openlineage-light-0.1.3 vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/input_record_separator.rb
fluent-plugin-openlineage-0.1.0 vendor/bundle/ruby/3.3.0/gems/csv-3.3.0/lib/csv/input_record_separator.rb
csv-3.3.0 lib/csv/input_record_separator.rb
csv-3.2.9 lib/csv/input_record_separator.rb
csv-3.2.8 lib/csv/input_record_separator.rb
csv-3.2.7 lib/csv/input_record_separator.rb
csv-3.2.6 lib/csv/input_record_separator.rb
csv-3.2.5 lib/csv/input_record_separator.rb
csv-3.2.4 lib/csv/input_record_separator.rb
csv-3.2.3 lib/csv/input_record_separator.rb