Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

Can you make a video on how to use RubyMine IDE and Debugging in Rubymine ?

Can you make a video on how to use RubyMine IDE and Debugging in Rubymine , I'm confused with Debugging Ruby on Rails

Kris Byrum
Kris Byrum
32,534 Points

Here's a video to help get introduced to it.

https://www.jetbrains.com/ruby/documentation/

If you've ever done breakpoints in a browser dev console, the same concepts apply here.

Essentially when you start RubyMine hit the bug instead of the play button. Then in the far left column of the code window click to add a break point.

When your code executes it will stop there. You'll be able to access any variables, params, etc in the console that RubyMine provides you (you'll have to look for that option in menu, but usually it's at the bottom).