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

base.rb « seed « pipeline « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db9706924bb68781bf9406d3bd286403e22b14cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Gitlab
  module Ci
    module Pipeline
      module Seed
        class Base
          def attributes
            raise NotImplementedError
          end

          def included?
            raise NotImplementedError
          end

          def to_resource
            raise NotImplementedError
          end
        end
      end
    end
  end
end