Sha256: 02949c0ec7293335d9f68105c34b99ba5072fa2b69b4f11e4d04803ee65d5122
Contents?: true
Size: 567 Bytes
Versions: 6794
Compression:
Stored size: 567 Bytes
Contents
# frozen_string_literal: true class Pry class Command class Bang < Pry::ClassCommand match(/^\s*!\s*$/) group 'Editing' description 'Clear the input buffer.' command_options use_prefix: false, listing: '!' 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 end
Version data entries
6,794 entries across 6,790 versions & 31 rubygems