agardiner/csv-diff

Support Ruby 3.0

scivola opened this issue · 0 comments

It does not work with Ruby 3.0.

The following line causes ArgumentError in csv library.

@data = CSV.open(@path, mode_string, csv_options) do |csv|

Changing csv_options to **csv_options will resolve it.