Hello Ruby/Rails users!
I would like to use the gem 'simplecov' for coverage analysis. I installed the gem but whenver I run tests, I get a message saying simplecov is not activated and cannot be used because I am not using ruby 1.9+
Though, when I run
brew which ruby
I get:
ruby: 1.9.3-p362
Which suggests I have ruby 1.9+
But when I run ruby -v I get:
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
So which version of ruby do I have? And how to I clean my mac repo so that I only have ruby 1.9+ and not the 1.8.7 build?
Thanks!