BigW Consortium Gitlab

base.rb 313 Bytes
Newer Older
1 2 3
module Gitlab
  module Badge
    class Base
4
      def entity
5 6 7
        raise NotImplementedError
      end

8
      def status
9 10 11 12 13 14 15 16 17 18 19 20 21
        raise NotImplementedError
      end

      def metadata
        raise NotImplementedError
      end

      def template
        raise NotImplementedError
      end
    end
  end
end