Sha256: c630b38b453657c1ff96228137fe413532cbf4e526ad91865edf7ea113f7c143
Contents?: true
Size: 374 Bytes
Versions: 253
Compression:
Stored size: 374 Bytes
Contents
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
Version data entries
253 entries across 246 versions & 44 rubygems