30 lines
569 B
Ruby
30 lines
569 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module CycleAnalytics
|
|
module Summary
|
|
class Base
|
|
def initialize(project:, options:)
|
|
@project = project
|
|
@options = options
|
|
end
|
|
|
|
def title
|
|
raise NotImplementedError, "Expected #{self.name} to implement title"
|
|
end
|
|
|
|
def value
|
|
raise NotImplementedError, "Expected #{self.name} to implement value"
|
|
end
|
|
|
|
def links
|
|
[]
|
|
end
|
|
|
|
private
|
|
|
|
attr_reader :project, :options
|
|
end
|
|
end
|
|
end
|
|
end
|