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

Version Path
pg_column_byte_packer-1.2.1 .pryrc
pg_ha_migrations-1.6.0 .pryrc
pg_ha_migrations-1.5.0 .pryrc
pg_ha_migrations-1.4.0 .pryrc
pg_column_byte_packer-1.2.0 .pryrc
pg_ha_migrations-1.3.0 .pryrc
pg_ha_migrations-1.2.5 .pryrc
pg_ha_migrations-1.2.4 .pryrc
pg_column_byte_packer-1.1.0 .pryrc
pg_column_byte_packer-1.0.0 .pryrc
pg_ha_migrations-1.2.3 .pryrc
pg_ha_migrations-1.2.2 .pryrc
pg_ha_migrations-1.2.1 .pryrc
pg_ha_migrations-1.2.0 .pryrc
pg_ha_migrations-1.1.0 .pryrc