summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/seed/base.rb
blob: 44c85aa67167476027fcceff7e4c0ffba55acc8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Gitlab
  module Ci
    module Pipeline
      module Seed
        class Base
          def attributes
            raise NotImplementedError
          end

          def excluded?
            raise NotImplementedError
          end
        end
      end
    end
  end
end