gitlab-org--gitlab-foss/lib/gitlab/ci/status/extended/base.rb

12 lines
179 B
Ruby
Raw Normal View History

module Gitlab::Ci
module Status
module Extended
module Base
def matches?(_subject)
raise NotImplementedError
end
end
end
end
end