From: Ben Bleything Date: 2007-07-22T10:30:32+09:00 Subject: Re: using IO objects? On Sun, Jul 22, 2007, Aaron Smith wrote: > hey.. uh.. slightly sumped with this. I'm using RSCM for some SVN stuff, > and when I do a diff i get a IO object back.. Not sure exactly how to > get what's in it.. any ideas? thanks all You should be able to call #read on your IO object to slurp the entire contents. IO is standard library, so you can find docs in all the usual places. I'd start here: http://ruby-doc.org/core/classes/IO.html Good luck! Ben