Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | require "csv" |
||
5 | class CsvParser |
||
6 | def initialize(options = {}) |
||
7 | defaults = { column_separator: ";" } |
||
8 | options = defaults.merge(options) |
||
9 | @parser_options = { col_sep: options[:column_separator] } |
||
10 | end |
||
11 | |||
12 | def parse(contents, &block) |
||
13 | CSV.parse(contents, parser_options, &block) |
||
14 | end |
||
15 | |||
16 | protected |
||
17 | |||
18 | def column_separator |
||
19 | parser_options[:col_sep] |
||
20 | end |
||
21 | |||
22 | attr_reader :parser_options |
||
23 | end |
||
24 | end |
||
26 |