| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | require '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 |
||
| 22 |