From: Brian Candler Date: 2010-01-03T07:15:49+09:00 Subject: Re: "Dummy" IO object to push and pull data? Oh, and there is also IO.pipe, which is unidirectional under most Unix flavours. >> rd, wr = IO.pipe => [#, #] >> wr.puts "hello" => nil >> rd.gets => "hello\n" >> -- Posted via http://www.ruby-forum.com/.