From: Logan Capaldo Date: 2006-05-27T06:57:26+09:00 Subject: Re: Extra CR chars inserted into a downloaded file On May 26, 2006, at 9:39 AM, Nate Morse wrote: > open("http://localhost/test/test.txt") {|f| > f.each_line {|line| p line} > p f.content_type > p f.charset + '\n' > > } Have we tried: open("http://localhost/test/test.txt", 'rb') { |f| ...etc... }