CsvParser.initialize()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
1
require 'csv'
2
3
module Koine
4
  module Csv
5
    class CsvParser
6
      def initialize(options = {})
7
        defaults = { col_sep: ';' }
8
        options = defaults.merge(options)
9
        @parser_options = options
10
      end
11
12
      def parse(contents, &block)
13
        CSV.parse(contents, parser_options, &block)
14
      end
15
16
      protected
17
18
      attr_reader :parser_options
19
    end
20
  end
21
end
22