I am trying to find ruby code that has commensurate functionality to these lines in python:
import code
code.interact(local=locals())
These lines essentially insert a single breakpoint into my code and open up a console where I can interact with any variables.
Any thoughts on how to do this in Ruby?