class Datahen::Client::ScraperExporter
Public Instance Methods
all(scraper_name, opts={})
click to toggle source
# File lib/datahen/client/scraper_exporter.rb, line 4 def all(scraper_name, opts={}) params = @options.merge(opts) self.class.get("/scrapers/#{scraper_name}/exporters", params) end
find(scraper_name, exporter_name)
click to toggle source
# File lib/datahen/client/scraper_exporter.rb, line 9 def find(scraper_name, exporter_name) self.class.get("/scrapers/#{scraper_name}/exporters/#{exporter_name}", @options) end