JetBrains RubyMine 3.2.4 debugger not working

Work with Ruby 1.9.2

The IDE complains that ruby-debug-base19x pearl is required and suggests installing it.

However, when you try to install it, a message is displayed

Failed to set gems. The following gems have not been installed: C: / Program Files (x86) / JetBrains / RubyMine 3.2.4 / rb / gems / ruby-debug-base19x-0.11.30.pre2.gem: Error installing ruby-debug-base19x- 0.11.30.pre2.gem: the native stone of linecache19 requires installed build tools. Update your PATH to enable creating tools or downloading DevKit from 'http://rubyinstaller.org/downloads' and follow the instructions at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit' C: / Program Files (x86) / JetBrains / RubyMine 3.2.4 / rb / gems / ruby-debug-ide-0.4.17.beta8.gem: error installing ruby-debug-ide-0.4.17.beta8.gem: native stone " ruby-debug-ide "requires installed build tools. Update your PATH to enable creating tools or downloading DevKit from 'http://rubyinstaller.org/downloads' and follow the instructions on 'Http://github.com/oneclick/rubyinstaller/wiki/Development-Kit' linecache19 (0.5.12): Error installing linecache19: "linecache19" For the built-in gem you need Installed assembly tools. Update your PATH to include building tools or download DevKit from 'http://rubyinstaller.org/downloads' and follow the instructions at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'//rubyinstaller.org/downloads' and follow the instructions at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'//rubyinstaller.org/downloads' and follow the instructions at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'

, DevKit, DevKit , , Ruby.

?

+5
3

RubyMine, Ruby DevKit . , DevKit :

gem install rdiscount --platform=ruby
ruby -rubygems -e "require 'rdiscount'; puts RDiscount.new('**Hello RubyInstaller**').to_html"

, , :

gem install ruby-debug-base19x --pre
gem install ruby-debug-ide --pre

, , - .

+8

, , gemset. , , gem list | grep debug, rubymine . , , Gemfile, gemset.

+1

There is an open issue on the RubyMine forum . Roman Melnik's answer worked for me (but my environment is Mac OS).

0
source

All Articles