Class: AmazonDeets::AbstractScraper

Inherits:
Object
  • Object
show all
Defined in:
lib/amazon_deets/core.rb

Overview

Basic interface for the scrapers. Point it to a URL, and it does the scrape. BOOM!

Direct Known Subclasses

MechanizedScraper

Instance Method Summary collapse

Instance Method Details

#scrape(url) ⇒ Object

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/amazon_deets/core.rb', line 12

def scrape(url)
  raise NotImplementedError
end