Method: Grubby::Scraper.scrape
- Defined in:
- lib/grubby/scraper.rb
permalink .scrape(url, agent = $grubby) ⇒ Grubby::Scraper
Instantiates the Scraper class with the resource indicated by url
. This method acts as a default factory method, and provides a standard interface for overrides.
139 140 141 |
# File 'lib/grubby/scraper.rb', line 139 def self.scrape(url, agent = $grubby) self.new(agent.get(url)) end |