Files
paperclip/.pryrc
Vasily Fedoseyev 923b605c42 Add coverage
2024-04-05 00:40:10 +03:00

8 lines
247 B
Ruby

# Alieases for debugger.
if defined?(PryByebug) || defined?(PryDebugger)
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