Fravadona (Frava Dona)
- Login: Fravadona
- Registered on: 12/02/2021
- Last sign in: 12/02/2021
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
12/02/2021
-
08:29 AM Ruby Bug #18378: Parsing CSV files from ARGF not working correctly anymore (it stopped working starting from Ruby 2.5)
- Okay, thank you, I reported it there
-
01:05 AM Ruby Bug #18378 (Third Party's Issue): Parsing CSV files from ARGF not working correctly anymore (it stopped working starting from Ruby 2.5)
- Hi everyone,
I noticed that, starting from Ruby 2.5, parsing multiple CSV files from `ARGF` stops after reading first *input*.<br>
For example, the simple one-liner:
``` shell
ruby -r csv -e 'CSV.new(ARGF).each{|row| p row}' fi...