Sha256: 28ca5cbad97d6ffabe59954e6821ef97b0b26a9d086bbe7a94dd40d19ae05d83

Contents?: true

Size: 1.27 KB

Versions: 6908

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

class Pry
  class Command
    class Exit < Pry::ClassCommand
      match 'exit'
      group 'Navigating Pry'
      description 'Pop the previous binding.'
      command_options keep_retval: true

      banner <<-'BANNER'
        Usage:   exit [OPTIONS] [--help]
        Aliases: quit

        Pop the previous binding (does NOT exit program). It can be useful to exit a
        context with a user-provided value. For instance an exit value can be used to
        determine program flow.

        exit "pry this"
        exit

        https://github.com/pry/pry/wiki/State-navigation#wiki-Exit_with_value
      BANNER

      def process
        if pry_instance.binding_stack.one?
          pry_instance.run_command "exit-all #{arg_string}"
        else
          # otherwise just pop a binding and return user supplied value
          process_pop_and_return
        end
      end

      def process_pop_and_return
        popped_object = pry_instance.binding_stack.pop.eval('self')

        # return a user-specified value if given otherwise return the object
        return target.eval(arg_string) unless arg_string.empty?

        popped_object
      end
    end

    Pry::Commands.add_command(Pry::Command::Exit)
    Pry::Commands.alias_command 'quit', 'exit'
  end
end

Version data entries

6,908 entries across 6,903 versions & 33 rubygems

Version Path
ory-client-0.0.1.alpha83 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha82 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha81 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha80 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha79 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha78 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha77 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha76 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha75 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha74 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha73 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha72 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha71 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha70 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha69 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha68 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha67 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-client-0.0.1.alpha66 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-oathkeeper-client-0.38.19.beta1 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb
ory-oathkeeper-client-0.38.18.beta1 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/exit.rb