gitlab-org--gitlab-foss/lib/gitlab/cycle_analytics/summary/base.rb

23 lines
468 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
end
end
end
end