Sha256: 65e7f1c8ec5a4f83576c7462aa66486cb9bca6ea068abda4e687bd22dfbf2938
Contents?: true
Size: 552 Bytes
Versions: 15
Compression:
Stored size: 552 Bytes
Contents
if defined?(PryByebug) Pry.commands.alias_command 'c', 'continue' Pry.commands.alias_command 's', 'step' Pry.commands.alias_command 'n', 'next' Pry.commands.alias_command 'f', 'finish' end # https://github.com/pry/pry/issues/1275#issuecomment-131969510 # Prevent issue where text input does not display on screen in container after typing Ctrl-C in a pry repl at_exit do exit!(1) end trap('INT') do begin Pry.run_command "continue", :show_output => true, :target => Pry.current rescue exit end end # End pry Ctrl-C workaround
Version data entries
15 entries across 15 versions & 2 rubygems