RubyMine debugger

前端 未结 1 1470
北恋
北恋 2021-01-28 17:48

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         


        
相关标签:
1条回答
  • 2021-01-28 18:23

    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
    
    0 讨论(0)
提交回复
热议问题