Skip to content

Instantly share code, notes, and snippets.

@jsugarman
Created December 30, 2017 22:39
Show Gist options
  • Save jsugarman/ed9686e98eace6420e6d4ebbcb4fa76d to your computer and use it in GitHub Desktop.
Save jsugarman/ed9686e98eace6420e6d4ebbcb4fa76d to your computer and use it in GitHub Desktop.
Pry byebug config
if defined?(PryByebug)
Pry.config.color = true
Pry.config.prompt_name = 'Pry:' + File.basename(Dir.pwd)
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment