class PryByebug::Processor

def stop

Cleanup when debugging is stopped and execution continues.
def stop
  Byebug.stop if !@always_enabled && Byebug.started?
  if PryByebug.current_remote_server   # Cleanup DRb remote if running
    PryByebug.current_remote_server.teardown
  end
end