class SimpleCov::Formatter::JSONFormatter::ResultHashFormatter

def format_meta

def format_meta
  {
    schema_version: SCHEMA_VERSION,
    simplecov_version: SimpleCov::VERSION,
    command_name: @result.command_name,
    project_name: SimpleCov.project_name,
    timestamp: @result.created_at.iso8601(3),
    root: SimpleCov.root,
    commit: git_commit,
    primary_coverage: SimpleCov.primary_coverage.to_s
  }.merge!(coverage_flags)
end