gitlab-org--gitlab-foss/lib/gitlab/ci/config/node/services.rb
2016-06-21 13:12:58 +02:00

18 lines
345 B
Ruby

module Gitlab
module Ci
class Config
module Node
##
# Entry that represents a configuration of Docker services.
#
class Services < Entry
include Validatable
validations do
validates :config, array_of_strings: true
end
end
end
end
end
end