debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary/base.rb

23 lines
468 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Gitlab
module CycleAnalytics
module Summary
class Base
2021-09-04 01:27:46 +05:30
def initialize(project:, options:)
2017-08-17 22:00:37 +05:30
@project = project
2021-09-04 01:27:46 +05:30
@options = options
2017-08-17 22:00:37 +05:30
end
def title
2021-06-08 01:23:25 +05:30
raise NotImplementedError, "Expected #{self.name} to implement title"
2017-08-17 22:00:37 +05:30
end
def value
2021-06-08 01:23:25 +05:30
raise NotImplementedError, "Expected #{self.name} to implement value"
2017-08-17 22:00:37 +05:30
end
end
end
end
end