Module: FindArt

Defined in:
lib/FindArt/scraper.rb,
lib/FindArt.rb,
lib/FindArt/scrapers/walmart.rb,
lib/FindArt/scrapers/junodownload.rb,
lib/FindArt/scrapers/albumartexchange.rb

Overview

Factory that contains site specific scapers. Scrapers are classes that collect urls of album art for a given artist and title. Scraper classes can self register them self by calling register_scraper in the class body.

Example

@scraper = Scraper.new

class TestScraper < Scraper
   register_scraper :test_scraper       
end

@scraper.scrapers 
{:test_scraper=>TestScraper}

Defined Under Namespace

Classes: AlbumArtExchange, JunoDownload, Scraper, WalMart

Constant Summary collapse

VERSION =
'0.0.1'