64b1044e7a
This decouples Ci::Config to provide a common interface for handling user configuration files.
26 lines
482 B
Ruby
26 lines
482 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Config
|
|
module Entry
|
|
class Validator < SimpleDelegator
|
|
include ActiveModel::Validations
|
|
include Entry::Validators
|
|
|
|
def initialize(entry)
|
|
super(entry)
|
|
end
|
|
|
|
def messages
|
|
errors.full_messages.map do |error|
|
|
"#{location} #{error}".downcase
|
|
end
|
|
end
|
|
|
|
def self.name
|
|
'Validator'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|