06892e88f5
Enables frozen string for the following: * lib/gitlab/ci/*.rb * lib/gitlab/ci/build/**/*.rb * lib/gitlab/ci/config/**/*.rb * lib/gitlab/ci/pipeline/**/*.rb * lib/gitlab/ci/reports/**/*.rb Partially addresses #47424.
27 lines
572 B
Ruby
27 lines
572 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Build
|
|
module Policy
|
|
##
|
|
# Abstract class that defines an interface of job policy
|
|
# specification.
|
|
#
|
|
# Used for job's only/except policy configuration.
|
|
#
|
|
class Specification
|
|
UnknownPolicyError = Class.new(StandardError)
|
|
|
|
def initialize(spec)
|
|
@spec = spec
|
|
end
|
|
|
|
def satisfied_by?(pipeline, seed = nil)
|
|
raise NotImplementedError
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|