doda (Kouichi Iwamoto)
- Login: doda
- Registered on: 11/01/2018
- Last sign in: 11/01/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
11/01/2018
-
07:42 AM Ruby Bug #14253: CSV.generate doesn't wrap a string anymore
- 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.
~~~ ruby
require 'csv'
csv_str = "\uFEFF" # BOM
CSV.generate(csv_str) do |csv|
c...