How to Uninstall RVM? [duplicate]

It’s easy; just do the following: or And don’t forget to remove the script calls in the following files: ~/.bashrc ~/.bash_profile ~/.profile And maybe others depending on whatever shell you’re using.

RubyMine Unit tests – Test Framework quit unexpectedly

There is a nice tutorial for setting up RubyMine tests in their online help, which helped me resolve the same problem as you describe (for Test::Unit-style tests). Basically you need to include the minitest and minitest-reporters gems into your project and add a call to use the new format of tests reporting: Take a look at the tutorial for more options.