Actions
Bug #14253
closedUpdated by hsbt (Hiroshi SHIBATA) over 6 years ago
- Status changed from Open to Closed
- Assignee set to kou (Kouhei Sutou)
Merged at https://github.com/ruby/csv/commit/75127b4ad00a748762effe9add3f91edeb0dc94f
It will merge ruby core repository until Ruby 2.6 releasing.
Updated by doda (Kouichi Iwamoto) about 6 years ago
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
Actions
Like0
Like0Like0