Skip to content

Instantly share code, notes, and snippets.

@tapajos
Created October 28, 2010 17:43
Show Gist options
  • Save tapajos/651891 to your computer and use it in GitHub Desktop.
Save tapajos/651891 to your computer and use it in GitHub Desktop.
require 'nokogiri'
require 'open-uri'
meu_lance = 100.00
def get_current_price()
doc = Nokogiri::HTML(open("http://viniciusteles.com.br/moveis/puff-lilas"))
doc.xpath('//div[@id="bidding"]/h3/em').to_s =~ /.*R\$ (.*).*/
$1.to_f
end
while(true) do
if get_current_price > meu_lance
message = "Alguém superou sue lance no puff"
`growlnotify -m "#{message}"`
end
sleep 60
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment