class SimpleCovLcov::Configuration

def lcov_file_name

def lcov_file_name
  @lcov_file_name || "#{Pathname.new(SimpleCov.root).basename}.lcov"
end

def output_directory

def output_directory
  @output_directory || File.join(SimpleCov.coverage_path, 'lcov')
end

def report_with_single_file?

def report_with_single_file?
  !!@report_with_single_file
end

def single_report_path

def single_report_path
  @single_report_path || File.join(output_directory, lcov_file_name)
end

def single_report_path=(new_path)

def single_report_path=(new_path)
  self.output_directory = File.dirname(new_path)
  @single_report_path = new_path
end