debug gem

Answered

I see that RubyMine's debugger works with the debug gem according to docs. But when I try to add a Ruby remote debug configuration, it defaults to showing the ruby-debug-ide gem command. Does RubyMine work without the ruby-debug-ide gem? Is there a way to enable increased logging so I can troubleshoot attaching to the debugger? I can confirm that the remote debugger is enabled on the server side and I can connect to it via TCP/IP and it works with VSCode and the rdbg extension.

0
1 comment

Hello,

The recommended way to debug is with debase and ruby-debug-ide gems, you can find this information here:
https://www.jetbrains.com/help/ruby/debugging-code.html
So that's why if you launch the local Run configuration in debug mode, it will also use these gems (if your Ruby version is 2.0+)
 

0

Please sign in to leave a comment.