
You have upgraded to Ruby 1.9.1 and now (after manually changing & compiling mongrel to work) you noticed that redgreen plugin is not working. Whenever you start test you get something similar to this:
`require': no such file to load -- test/unit/ui/console/testrunner (MissingSourceFile)
Just type this in:
sudo gem install test-unit -v 1.2.3
If you are one of those “problematic” people that want to know why is this working… truth is much simpler than I would like it to be considering that I lost 2 hours over this
Ruby 1.9.1 replaced test-unit framework with minitest (because it’s supposed to be better). Redgreen plugin depends on console-runner from test-unit so you need to install it as u gem. (Older version, because the new 2.0.3 changed API just enough so redgreen is not working)