module Rookout

Constants

COMMIT
VERSION

Public Instance Methods

flush() click to toggle source
# File lib/rookout.rb, line 9
def flush
  require_relative "rookout/interface"
  Interface.instance.flush
end
start(options = {}) click to toggle source
# File lib/rookout.rb, line 4
def start options = {}
  require_relative "rookout/interface"
  Interface.instance.start options
end
stop() click to toggle source
# File lib/rookout.rb, line 14
def stop
  require_relative "rookout/interface"
  Interface.instance.stop
end