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