ccsv icon indicating copy to clipboard operation
ccsv copied to clipboard

A pure-C CSV parser for Ruby

Results 5 ccsv issues
Sort by recently updated
recently updated
newest added

No CSV specification escapes fields like in this test https://github.com/evan/ccsv/blob/master/spec/ccsv_spec.rb#L111 Similarly, column separators are not escaped with backslashes, but by using double-quoting https://github.com/evan/ccsv/blob/master/spec/ccsv_spec.rb#L76

Can't install gem from GitHub without a gemspec.

- Parses `"bar\"baz"` as `"\"bar\"\"baz\""` - Parses `"bar,baz"` as `"\"bar"` and `"baz\""` - Parses empty quoted field as `"\"\""` instead of empty string (`""`) - Doesn't fail on unescaped double...