I am working on a ROR application where I need to implement a crawler that crawls other sites and stores data in my database. For example suppose I want to crawl all deals from http://www.snapdeal.com and store them into my database. How to implement this using crawler?
Share
There are couple of options depending upon your usecase.
I have used combination of Nokogiri and Mechanize for few of my projects and I think they are good options.