Sha256: fb894dab6983b87dc14ea5dcad66ba87c00f0e82c090fdb89dfa203c729742d7

Contents?: true

Size: 685 Bytes

Versions: 253

Compression:

Stored size: 685 Bytes

Contents

class Pry
  class Command::SwitchTo < Pry::ClassCommand
    match 'switch-to'
    group 'Navigating Pry'
    description 'Start a new subsession on a binding in the current stack.'

    banner <<-'BANNER'
      Start a new subsession on a binding in the current stack (numbered by nesting).
    BANNER

    def process(selection)
      selection = selection.to_i

      if selection < 0 || selection > _pry_.binding_stack.size - 1
        raise CommandError, "Invalid binding index #{selection} - use `nesting` command to view valid indices."
      else
        Pry.start(_pry_.binding_stack[selection])
      end
    end
  end

  Pry::Commands.add_command(Pry::Command::SwitchTo)
end

Version data entries

253 entries across 246 versions & 44 rubygems

Version Path
comidita_ull-0.1.0 vendor/bundle/ruby/2.3.0/gems/pry-0.11.2/lib/pry/commands/switch_to.rb
pry-0.11.3 lib/pry/commands/switch_to.rb
pry-0.11.3-java lib/pry/commands/switch_to.rb
pry-0.11.2 lib/pry/commands/switch_to.rb
pry-0.11.2-java lib/pry/commands/switch_to.rb
logstash-output-icinga-1.1.0 vendor/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/switch_to.rb
logstash-output-icinga-1.1.0 vendor/jruby/2.3.0/gems/pry-0.10.4-java/lib/pry/commands/switch_to.rb
tdiary-5.0.6 vendor/bundle/gems/pry-0.11.0/lib/pry/commands/switch_to.rb
pry-0.11.1 lib/pry/commands/switch_to.rb
pry-0.11.1-java lib/pry/commands/switch_to.rb
pry-0.11.0 lib/pry/commands/switch_to.rb
pry-0.11.0-java lib/pry/commands/switch_to.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/switch_to.rb
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/switch_to.rb
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/switch_to.rb
logstash-filter-cache-redis-0.1.0 vendor/bundle/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/switch_to.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/switch_to.rb
tdiary-5.0.5 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/switch_to.rb
logstash-filter-csharp-0.1.0 vendor/bundle/jruby/2.3.0/gems/pry-0.10.4-java/lib/pry/commands/switch_to.rb
logstash-filter-htmlentities-0.1.0 vendor/bundle/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/switch_to.rb