Reputation: 972
I have a rather old ruby 1.8.7 + Rails 2.3.8 project which I still need to support. In the project there is a lot of unit test which I use.
And, I would like to have a code coverage report as I had for many years ago using SimpleCov.
But I cannot find the gem files any more. Every gem I can find is only for Ruby 1.9+....
Can you help me?
Upvotes: 0
Views: 153
Reputation: 972
I found the answer my self. SimpleCov is ONLY for Ruby 1.9+. If I want to see my code coverage I should use rcov, which is ONLY for ruby <=1.8.7.
That solution is perfect for me.
Upvotes: 1