I'm new to rails. The current way that I do debug on rails is:
- Run rails in rubymine in debug mode
- Instead of putting a break point, I will put down "binding pry" in code
- Open terminal and type "rails c".
- Trigger the specific state/event in terminal so I can get to the break point.
This is not my preferred workflow. It is tedious. I really like jet brain's debug mode when I can easily put down a break point, stop, evaluate expressions, look up all available objects, and step into a specific method. Is there anyway to do this with rails?
So eventually I figured this out. Tools->Run Rails Console