Class: Courgette::Fetchers::Fetcher

Inherits:
Object
  • Object
show all
Defined in:
lib/courgette/fetchers/fetcher.rb

Direct Known Subclasses

CommutateursFetcher, HpFetcher

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ip, details) ⇒ Fetcher

Returns a new instance of Fetcher.



4
5
6
# File 'lib/courgette/fetchers/fetcher.rb', line 4

def initialize(ip, details)
  raise "Not implemented"
end

Class Method Details

.responsible_of(vendor) ⇒ Object



12
13
14
# File 'lib/courgette/fetchers/fetcher.rb', line 12

def self.responsible_of(vendor)
  raise "Not implemented"
end

Instance Method Details

#fetchObject



8
9
10
# File 'lib/courgette/fetchers/fetcher.rb', line 8

def fetch
  raise "Not implemented"
end