gem install pry pry-debugger awesome_print
- as irb:
pry
- as a debugger:
require 'pry'; binding.pry
in your code (or just typepry!<space>
to make vim do it)
clear
command to clear screenc
(continue)n
(next)s
(step) commands for debugging using pry-debugger- all objects displayed in readable format (colorized, sorted hash keys) - via awesome_print
- a few color modifications to make it more useable
- type
help
to see all the commands