Sha256: 24f06d9b7addab5874ee900c1f9c22ad502bd597083b0535550be432e0d16ca2
Contents?: true
Size: 442 Bytes
Versions: 6796
Compression:
Stored size: 442 Bytes
Contents
# 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
Version data entries
6,796 entries across 6,792 versions & 31 rubygems