class Guard::Interactor

def stop


Kill interactor thread if not current
def stop
  return if ENV['GUARD_ENV'] == 'test'
  unless Thread.current == @thread
    @thread.kill
  end
end