debian-mirror-gitlab/lib/gitlab/badge/base.rb
2018-12-13 13:39:08 +05:30

24 lines
344 B
Ruby

# frozen_string_literal: true
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