I used rubyMine and want to run debugger but have error what this ,mine and waht need to doing ? screen
/home/ivan/.rbenv/versions/2.3.1/bin/ruby -e $stdout.sync
I suspect that you are pointing to the wrong SDK and gems.
Open Rubymine Preferences -> Language & Frameworks -> Ruby SDK and Gems
Select the correct RVM gemset, then press the green tick directly below that panel and apply your changes.
Incidentally, add the following to your Gemfile and run bundle install
, for debugging support from rubyMine -
group :development, :test do
gem 'debase'
gem 'ruby-debug-ide'
end