class Drunker::Aggregator::Base

Public Instance Methods

exit_status(layers) click to toggle source
# File lib/drunker/aggregator/base.rb, line 8
def exit_status(layers)
  raise NotImplementedError.new("You must implement #{self.class}##{__method__}")
end
run(layers) click to toggle source
# File lib/drunker/aggregator/base.rb, line 4
def run(layers)
  raise NotImplementedError.new("You must implement #{self.class}##{__method__}")
end