ruby-debug / ruby-debug-ide

An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
https://www.jetbrains.com/ruby/features/ruby_debugger.html
Other
371 stars 83 forks source link

RubyMine remote debugging issue #218

Open svenkirsten opened 3 years ago

svenkirsten commented 3 years ago

I'm using RubeMine to develop RAILS code. And I'm using remote debugging between RubyMine and rdebug-ide.

All works very well, but there is a minor point the debugger failes.

In RAILS I'm using in the MODEL :

has_one_attached :paper

When running nativly without the debugger, I can access and ask e.g:

object.paper.attached?

But the same line of code failes when running in debugger.

ActionView::Template::Error (undefined method `paper'.....

So my mind goes into the direction the debugger is the reason. Version Information:

rdebug-ide -v
Using ruby-debug-base 0.2.4.1
gem list | grep ruby-debug     
ruby-debug-ide (0.7.2)

And idea to fix that ?