Class: Gitlab::Ci::Pipeline::Seed::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/gitlab/ci/pipeline/seed/base.rb

Direct Known Subclasses

Build, Processable::ResourceGroup, Stage

Instance Method Summary collapse

Instance Method Details

#attributesObject

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/gitlab/ci/pipeline/seed/base.rb', line 8

def attributes
  raise NotImplementedError
end

#errorsObject

Raises:

  • (NotImplementedError)


16
17
18
# File 'lib/gitlab/ci/pipeline/seed/base.rb', line 16

def errors
  raise NotImplementedError
end

#included?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/gitlab/ci/pipeline/seed/base.rb', line 12

def included?
  raise NotImplementedError
end

#to_resourceObject

Raises:

  • (NotImplementedError)


20
21
22
# File 'lib/gitlab/ci/pipeline/seed/base.rb', line 20

def to_resource
  raise NotImplementedError
end