File Manager

Path: /proc/self/root/opt/chef/embedded/lib/ruby/gems/2.7.0/gems/pry-0.13.1/lib/pry/commands/

Viewing File: exit_all.rb

# frozen_string_literal: true

class Pry
  class Command
    class ExitAll < Pry::ClassCommand
      match 'exit-all'
      group 'Navigating Pry'
      description 'End the current Pry session.'

      banner <<-'BANNER'
        Usage:   exit-all [--help]
        Aliases: !!@

        End the current Pry session (popping all bindings and returning to caller).
        Accepts optional return value.
      BANNER

      def process
        # calculate user-given value
        exit_value = target.eval(arg_string)

        # clear the binding stack
        pry_instance.binding_stack.clear

        # break out of the repl loop
        throw(:breakout, exit_value)
      end
    end

    Pry::Commands.add_command(Pry::Command::ExitAll)
    Pry::Commands.alias_command '!!@', 'exit-all'
  end
end