Hi everyone, I noticed that, starting from Ruby 2.5, parsing multiple CSV files from ARGF stops after reading the first input. For example, the simple one-liner: ``` sh ruby -r csv -e 'CSV.new(ARGF).each{|row| p row}' file1.csv file2.csv ``` Only processes the content of file1.csv