module ARBookFinder

Constants

BASE_URL
VERSION

Public Class Methods

collection(collection, page = 1) click to toggle source
# File lib/ar_book_finder.rb, line 37
def self.collection(collection, page = 1)
  scraper(options[:user_type]).collection(collection, page)
end
scraper(user_type) click to toggle source
# File lib/ar_book_finder.rb, line 25
def self.scraper(user_type)
  Scraper.new(user_type)
end