BigW Consortium Gitlab

extended.rb 280 Bytes
Newer Older
1 2 3
module Gitlab
  module Ci
    module Status
4 5 6 7
      class Extended < SimpleDelegator
        def initialize(status)
          super(@status = status)
        end
8

9 10
        def self.matches?(_subject, _user)
          raise NotImplementedError
11 12 13 14 15
        end
      end
    end
  end
end