class Garcon::Results

Public Class Methods

new(*) click to toggle source
Calls superclass method
# File lib/garcon/utility/hookers.rb, line 133
def initialize(*)
  super
  @halted = false
end

Public Instance Methods

halted!() click to toggle source
# File lib/garcon/utility/hookers.rb, line 138
def halted!
  @halted = true
  self
end
halted?() click to toggle source
# File lib/garcon/utility/hookers.rb, line 143
def halted?
  @halted
end
not_halted?() click to toggle source
# File lib/garcon/utility/hookers.rb, line 147
def not_halted?
  not @halted
end