Rails Debug pry-byebug alias
- Install pry-byebug
- make .pryrc file in the root directory
- add followings to .pryrc
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