BigW Consortium Gitlab

while.rb 610 Bytes
module Gitlab
  module Ci
    class Config
      module Node
        ##
        # Entry that represents a ref and trigger policy for the job.
        #
        class While < Entry
          include Validatable

          validations do
            include LegacyValidationHelpers

            validate :array_of_strings_or_regexps

            def array_of_strings_or_regexps
              unless validate_array_of_strings_or_regexps(config)
                errors.add(:config, 'should be an array of strings or regexps')
              end
            end
          end
        end
      end
    end
  end
end