debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary/base.rb
2021-11-11 11:23:49 +05:30

26 lines
525 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
private
attr_reader :project, :options
end
end
end
end