Actions
Bug #14253
closedCSV.generate doesn't wrap a string anymore
Bug #14253:
CSV.generate doesn't wrap a string anymore
Actions
Added by ahorek (Pavel Rosický) almost 8 years ago. Updated almost 7 years ago.
Merged at https://github.com/ruby/csv/commit/75127b4ad00a748762effe9add3f91edeb0dc94f
It will merge ruby core repository until Ruby 2.6 releasing.
Could you consider backporting this patch to 2.5?
The following code that generates a CSV file with a BOM does not work correctly with Ruby 2.5.
require 'csv'
csv_str = "\uFEFF" # BOM
CSV.generate(csv_str) do |csv|
csv << ["列1", "列2", "列3"]
end
print csv_str