debian-mirror-gitlab/lib/gitlab/ci/config/entry/paths.rb
2018-12-13 13:39:08 +05:30

20 lines
356 B
Ruby

# frozen_string_literal: true
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