File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/pry-0.10.4/lib/pry/commands/

Viewing File: bang_pry.rb

class Pry
  class Command::BangPry < Pry::ClassCommand
    match '!pry'
    group 'Navigating Pry'
    description 'Start a Pry session on current self.'

    banner <<-'BANNER'
      Start a Pry session on current self. Also works mid multi-line expression.
    BANNER

    def process
      target.pry
    end
  end

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