Skip to content

Instantly share code, notes, and snippets.

View lastknight's full-sized avatar

Matteo Flora lastknight

View GitHub Profile
require 'anemone'
Anemone.crawl("http://stackoverflow.com/", {:proxy_host => 'proxy.xyz.com', :proxy_port => '9999'}) do |anemone|
anemone.on_every_page do |page|
puts page.url
end
end