26 lines
563 B
Ruby
26 lines
563 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module CycleAnalytics
|
|
module Summary
|
|
module Group
|
|
class Base
|
|
attr_reader :group, :options
|
|
|
|
def initialize(group:, options:)
|
|
@group = group
|
|
@options = options
|
|
end
|
|
|
|
def title
|
|
raise NotImplementedError.new("Expected #{self.name} to implement title")
|
|
end
|
|
|
|
def value
|
|
raise NotImplementedError.new("Expected #{self.name} to implement value")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|