Questions tagged [pry]

Pry is an alternative to the standard Ruby interpreter, IRB.

Pry is a REPL (Read Eval Print Loop) interpreter. It allows you to access the source code and the documentation, edit methods, and execute shell commands.

http://pry.github.com/

1 questions
10
votes
2 answers

How do you run pry from emacs

While writing RoR code I often need to run drop into a pry session or a debugger. So I place my binding.pry line in the implementation code and run my spec(s). That works fine if I run the specs in a terminal but from inside Emacs, I get a messy…