module SimpleCov::LastRun

def read

def read
  return nil unless File.exist?(last_run_path)
  SimpleCov::JSON.parse(File.read(last_run_path))
end