command not found: rdebug-ide Follow
Hi,
not sure if this is a RubyMine question. I'll still try. As described in the JetBrains docs I added the gem 'ruby-debug-ide' to my gemfile (ran bundler) and tried to call
rdebug-ide --host 0.0.0.0--port 9337 --dispatcher-port 26162 -- rails s
And I simple get an error
command not found: rdebug-ide
Simple as that. What do I have to do to run rdebug-ide?
Thanks,
Lukas
Please sign in to leave a comment.
Hi,
I'd check that the gem is installed ('gem list ruby-debug-ide'). Also are you using default paths or bundler installs gems in a special place?
If the latter try execute the command with bundler's exec command (bundle exec rdebug-ide ...)
Hope this helps, Oleg.