mirror of
https://github.com/kemko/paperclip.git
synced 2026-01-01 07:55:41 +03:00
8 lines
247 B
Ruby
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
|