Welcome to mirror list, hosted at ThFree Co, Russian Federation.

extended.rb « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e8101f894950f4327dc473cc05b262a95e7ed80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Gitlab
  module Ci
    module Status
      class Extended < SimpleDelegator
        def initialize(status)
          super(@status = status)
        end

        def self.matches?(_subject, _user)
          raise NotImplementedError
        end
      end
    end
  end
end