class Marver::ComicFinder

Constants

ALLOWED_PARAMS

Private Instance Methods

find(options = {}) click to toggle source
# File lib/marver/finders/comic_finder.rb, line 20
def find(options = {})
  FinderParamFilter.filter!(options, ALLOWED_PARAMS)
  response = Marver::API::Client.new.get(:comics, options)
  results = Marver::DataContainer.new(response).results
  Marver::Factory::Comic.new(results).build
end