gitlab-org--gitlab-foss/lib/gitlab/ci/config/node/paths.rb
2016-06-24 09:54:52 +02:00

18 lines
325 B
Ruby

module Gitlab
module Ci
class Config
module Node
##
# Entry that represents an array of paths.
#
class Paths < Entry
include Validatable
validations do
validates :config, array_of_strings: true
end
end
end
end
end
end