We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
joux3 and myself were planning to implement some degree of SOCKS support, however I discovered a real gem of a gem called socksify Ruby.
gem install socksify
require 'rubygems' require 'socksify' require 'wang' TCPSocket::socks_server = "127.0.0.1" TCPSocket::socks_port = 1080 wang = WANG.new code, header, source = wang.get("http://whatismyip.org/") puts source
That’s all to it!