# frozen_string_literal: true module Gitlab module Ci class Config module Yaml class Result attr_reader :error def initialize(config: nil, error: nil) @config = Array.wrap(config) @error = error end def valid? error.nil? end def has_header? return false unless @config.first.is_a?(Hash) @config.size > 1 && @config.first.key?(:spec) end def header raise ArgumentError unless has_header? @config.first end def content return @config.last if has_header? @config.first end end end end end end