class Inspec::Reporters::Yaml

def render

def render
  output(Inspec::Reporters::Json.new({ run_data: run_data }).report.to_yaml, false)
end

def report

def report
  {
    platform: platform,
    profiles: profiles,
    statistics: {
      duration: run_data[:statistics][:duration],
    },
    version: run_data[:version],
  }
end