I have the following code at the top of spec/spec_helper.rb and features/support/env.rb (SimpleCov merging RSpec & Cucumber coverage results):
require 'simplecov'
I also have the following code in a .simplecov file in the project root:
SimpleCov.start 'rails'
However, for some reason, lib/tasks/cucumber.rake is included in the coverage...

Any ideas?