Yes, you can use a reddish stone. Include it in your gemfile:
group :development, :test do gem 'redgreen' end
And all you need for ruby 1.8. If you are using 1.9, a workaround. add the gem to the test block:
group :development, :test do gem 'redgreen' gem 'test-unit', '1.2.3 end
It's not perfect with 1.9 - the test block seems to run an empty test suite after every rake or generator call, which is harmless but annoying.
Jaime bellmyer
source share