debian-mirror-gitlab/lib/gitlab/ci/config/entry/rules.rb
2021-01-03 14:25:43 +05:30

26 lines
512 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
class Config
module Entry
class Rules < ::Gitlab::Config::Entry::ComposableArray
include ::Gitlab::Config::Entry::Validatable
validations do
validates :config, presence: true
validates :config, type: Array
end
def value
@config
end
def composable_class
Entry::Rules::Rule
end
end
end
end
end
end