Some of my rubygems – e.g. proxy_pac_rb – either need a backing HTTP(S)-server for their tests or interact with some external web services via HTTP/HTTPS. To mock external services you can either use VCR, webmock or just plain Webrick. To serve data for your tests via HTTP(S), you can use Webrick as well. As Webrick is part of ruby core and is sufficient for both use cases, this article only describes ways to run a Webrick-HTTP(S)-server to back your test suite.
Do you know what: It’s that simple to setup an HTTP forwarding proxy (proxy) with ruby. The only thing you need is webrick’s HTTPProxyServer-class. If you don’t know what a proxy is, please have a look at this article on Wikipedia. In brief: An HTTP proxy is an intermediary server. It is located between the HTTP client and the HTTP server. Using this kind of architecture makes it easier to do virus scanning etc. of web traffic.