class Courgette::Fetchers::Fetcher

Public Class Methods

new(ip, details) click to toggle source
# File lib/courgette/fetchers/fetcher.rb, line 4
def initialize(ip, details)
  raise "Not implemented"
end
responsible_of(vendor) click to toggle source
# File lib/courgette/fetchers/fetcher.rb, line 12
def self.responsible_of(vendor)
  raise "Not implemented"
end

Public Instance Methods

fetch() click to toggle source
# File lib/courgette/fetchers/fetcher.rb, line 8
def fetch
  raise "Not implemented"
end