debian-mirror-gitlab/lib/gitlab/ci/pipeline/seed/base.rb

28 lines
461 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-05-09 12:01:36 +05:30
module Gitlab
module Ci
module Pipeline
module Seed
class Base
def attributes
raise NotImplementedError
end
def included?
raise NotImplementedError
end
2019-10-12 21:52:04 +05:30
def errors
raise NotImplementedError
end
2018-05-09 12:01:36 +05:30
def to_resource
raise NotImplementedError
end
end
end
end
end
end