It is now possible to get coverage for .erb templates using Simplecov. You just need to make a call to enable_coverage_for_eval
in the start block, like this:
require 'simplecov'
SimpleCov.start do
enable_coverage_for_eval
...
add_group "Views", "app/views"
...
end