[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

monitor changes to website

Junkone

2/13/2008 4:02:00 PM

is there any ruby gem or library that monitors changes to website. i
want to be able to program with it.
eg product on web is http://beta.changedete...
2 Answers

ThoML

2/13/2008 6:07:00 PM

0

> is there any ruby gem or library that monitors changes to website. i
> want to be able to program with it.

You probably should explain in greater detail how you'd like to use
it. websitary[1] does something like this according to its blurb. It's
rather lo-fi though and was meant to be little more than a websec
replacement for personal use.


[1] http://websitiary.rub...

Jim Clark

2/13/2008 6:40:00 PM

0

Junkone wrote:
> is there any ruby gem or library that monitors changes to website. i
> want to be able to program with it.
> eg product on web is http://beta.changedete...
>
>
You can use the Mechanize gem to fetch one or more pages from a site and
then compare it to a saved version to detect changes. If the page has a
time/date stamp, it won't match exactly so you'll probably want to
figure out some way to monitor the parts of the page that matter to you.
Regular expressions will be your friend here.

HTH,
Jim