module Eaternet::Prototype::AbstractAdapter
Public Instance Methods
businesses()
click to toggle source
@return [Enumerable<BusinessData>]
# File lib/eaternet/prototype.rb, line 10 def businesses fail 'Override this to return an Enumerable of BusinessData' end
inspections()
click to toggle source
@return [Enumerable<InspectionData>]
# File lib/eaternet/prototype.rb, line 15 def inspections fail 'Override this to return an Enumerable of InspectionData' end
violation_kinds()
click to toggle source
@return [Enumerable<ViolationData>]
# File lib/eaternet/prototype.rb, line 25 def violation_kinds fail 'Override this to return an Enumerable of ViolationKindData' end
violations()
click to toggle source
@return [Enumerable<ViolationData>]
# File lib/eaternet/prototype.rb, line 20 def violations fail 'Override this to return an Enumerable of ViolationData' end