Skip to content

Instantly share code, notes, and snippets.

@railscard
Created September 7, 2012 11:50
Show Gist options
  • Save railscard/3665520 to your computer and use it in GitHub Desktop.
Save railscard/3665520 to your computer and use it in GitHub Desktop.
Anemone proxy example
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment