module ARBookFinder
Constants
- BASE_URL
- VERSION
Public Class Methods
advanced_search(user_type, search_type, params)
click to toggle source
# File lib/ar_book_finder.rb, line 33 def self.advanced_search(user_type, search_type, params) raise 'Not yet implemented' end
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
search(query, page = 1)
click to toggle source
# File lib/ar_book_finder.rb, line 29 def self.search(query, page = 1) scraper(options[:user_type]).search(query, page) end