class Rcov::Formatters::HtmlErbTemplate

def initialize(template_file, locals={})

def initialize(template_file, locals={})
  require "erb"
  template_path = File.expand_path("#{File.dirname(__FILE__)}/../templates/#{template_file}")
  @template = ERB.new(File.read(template_path))
  @local_variables = locals
  @path_relativizer = Hash.new{|h,base|
    h[base] = Pathname.new(base).cleanpath.to_s.gsub(%r{^\w:[/\\]}, "").gsub(/\./, "_").gsub(/[\\\/]/, "-") + ".html"
  }
end