Skip to content

Instantly share code, notes, and snippets.

@ackintosh
Created July 3, 2013 12:08
Show Gist options
  • Save ackintosh/5917386 to your computer and use it in GitHub Desktop.
Save ackintosh/5917386 to your computer and use it in GitHub Desktop.
pry
Pry.commands.alias_command 'c', 'continue'
Pry.commands.alias_command 's', 'step'
Pry.commands.alias_command 'n', 'next'
require 'pry'
(1...5).each do |n|
a = n
binding.pry
end
$ gem install pry
$ gem install pry-nav
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment