Actions
Bug #14253
closed
Actions
Like0
Like0Like0
Added by ahorek (Pavel Rosický) over 7 years ago. Updated over 6 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