class Byebug::PryProcessor

def resume_pry


Resume an existing Pry REPL at the paused point.
def resume_pry
  new_binding = frame._binding
  run do
    if defined?(@pry) && @pry
      @pry.repl(new_binding)
    else
      @pry = Pry::REPL.start_without_pry_byebug(target: new_binding)
    end
  end
end