e166e5747c
Enable frozen string for the following files: * lib/gitlab/auth/**/*.rb * lib/gitlab/badge/**/*.rb * lib/gitlab/bare_repository_import/**/*.rb * lib/gitlab/bitbucket_import/**/*.rb * lib/gitlab/bitbucket_server_import/**/*.rb * lib/gitlab/cache/**/*.rb * lib/gitlab/checks/**/*.rb Partially addresses #47424.
23 lines
344 B
Ruby
23 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
|