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: bang_pry.rb

# frozen_string_literal: true

class Pry
  class Command
    class 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
end