csv-safe
csv-safe copied to clipboard
Extra single quote character
It can be reproduced with:
rows = [["-24.34","2"]]; CSVSafe.generate { |csv| rows.each { |row| csv << row } }
Expected output: "-24.34,2\n"
Actual output: "'-24.34,2\n"
Hello, I think I have a similar issue.