diff options
author | Sutou Kouhei <[email protected]> | 2020-11-23 05:54:04 +0900 |
---|---|---|
committer | Sutou Kouhei <[email protected]> | 2020-11-24 09:33:55 +0900 |
commit | 832b7f3c547377621e920704c3e4dd839d21f0af () | |
tree | 64021c3e574e08ccfa6de91b867655dbb8541a33 /lib/csv | |
parent | f9935205acc6ee1c737c2c132e547747c21d3ead (diff) |
[ruby/csv] Add support for \r\n with skip_lines: /...$/ again
: fix GH-194 Reported by Josef Šimánek. Thanks!!! https://.com/ruby/csv/commit/fd86afe081
Notes: Merged: https://.com/ruby/ruby/pull/3804
-rw-r--r-- | lib/csv/parser.rb | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -785,6 +785,7 @@ class CSV end def skip_line?(line) case @skip_lines when String line.include?(@skip_lines) |