summaryrefslogtreecommitdiff
path: root/lib/csv
diff options
context:
space:
mode:
authorSutou Kouhei <[email protected]>2021-12-03 06:30:01 +0900
committerSutou Kouhei <[email protected]>2021-12-24 14:35:33 +0900
commit56a5ae9f52920982a2f1571a57090772c94c8243 ()
tree5c58b4f62c615d20da69cd4946e8ac99366723e7 /lib/csv
parentd137ce50a1fb438b1fa078f5c54a72b7be30c52a (diff)
[ruby/csv] Fix a bug that all of ARGF contents may not be consumed
: fix GH-228 Reported by Rafael Navaza. Thanks!!! https://.com/ruby/csv/commit/81f595b6a1
Notes: Merged: https://.com/ruby/ruby/pull/5336
-rw-r--r--lib/csv/parser.rb5
1 files changed, 4 insertions, 1 deletions
@@ -768,7 +768,10 @@ class CSV
string = nil
if @samples.empty? and @input.is_a?(StringIO)
string = @input.read
- elsif @samples.size == 1 and @input.respond_to?(:eof?) and @input.eof?
string = @samples[0]
end
if string