gem install jazz_hands
Jazz hands is a nice bundling of all pry-related gems.
- as irb:
pry
- as rails console:
script/console --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 screensql
command to execute something (within a rails console)c
(continue)n
(next)s
(step) commands for debugging using pry-nav- 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