From: _why Date: 2007-01-09T04:41:12+09:00 Subject: Re: Proxy server in ruby? On Tue, Jan 09, 2007 at 03:54:07AM +0900, Jan Svitok wrote: > MouseHole is a http proxy written using webrick. > http://code.whytheluckystiff.net/mouseHole/ MouseHole's first version used WEBrick. Specifically the WEBrick::HTTPProxyServer, which comes with Ruby. It's a bit slow, however, and doesn't stream requests. But it's kinda neat. MouseHole 2 uses Mongrel and can stream requests. The code is released under an MIT license, so please be my guest and cut it up! svn co https://code.whytheluckystiff.net/svn/mouseHole/trunk mouseHole _why