pry--pry/lib/pry/default_commands/bang_pry.rb

6 lines
152 B
Ruby
Raw Normal View History

class Pry
Pry::Commands.command "!pry", "Start a Pry session on current self; this even works mid multi-line expression." do
target.pry
end
end