mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
19 lines
325 B
Ruby
19 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
|