class SimpleCov::Formatter::RcovFormatter

def coverage_threshold_classes(percentage)

def coverage_threshold_classes(percentage)
  return 110 if percentage == 100
  return (1..10).find_all{|i| i * 10 > percentage}.map{|i| i.to_i * 10} * " "
end