I\'m having an issue with FasterCSV and my rake db:seeds migration. I get the error: \"rake aborted! Unquoted fields do not allow \\r or \\n (line 2)\" on the following se
Use String.encode(universal_newline: true) instead gsub. It converting CRLF and CR to LF # Always break lines with \n
String.encode(universal_newline: true)