22 lines
313 B
Ruby
22 lines
313 B
Ruby
|
module Gitlab
|
||
|
module Badge
|
||
|
class Base
|
||
|
def entity
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
|
||
|
def status
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
|
||
|
def metadata
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
|
||
|
def template
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|