class Guard::Jobs::PryWrapper

def _kill_pry

def _kill_pry
  @mutex.synchronize do
    unless @thread.nil?
      @thread.kill
      @thread = nil # set to nil so we know we were killed
    end
  end
end