class SimpleCov::FileList

def covered_strength

Computes the strength (hits / line) based upon lines covered and lines missed
def covered_strength
  return 0 if empty? or lines_of_code == 0
  map {|f| f.covered_strength }.inject(&:+) / size
end