gitlab-org--gitlab-foss/lib/gitlab/ci/status/extended.rb
2016-12-12 12:59:01 +01:00

15 lines
262 B
Ruby

module Gitlab
module Ci
module Status
module Extended
extend ActiveSupport::Concern
class_methods do
def matches?(_subject, _user)
raise NotImplementedError
end
end
end
end
end
end