Sha256: 0ba261c9b4d0c2fcdd63284e70e71294e6cdc4609bc53f24428f53b45fd63de8
Contents?: true
Size: 482 Bytes
Versions: 134
Compression:
Stored size: 482 Bytes
Contents
class Pry class Command::Bang < Pry::ClassCommand match(/^\s*!\s*$/) group 'Editing' description 'Clear the input buffer.' command_options :use_prefix => false banner <<-'BANNER' Clear the input buffer. Useful if the parsing process goes wrong and you get stuck in the read loop. BANNER def process output.puts 'Input buffer cleared!' eval_string.replace('') end end Pry::Commands.add_command(Pry::Command::Bang) end
Version data entries
134 entries across 127 versions & 34 rubygems