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

31 lines
569 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
2021-11-11 11:23:49 +05:30
2021-12-11 22:18:48 +05:30
def links
[]
end
2021-11-11 11:23:49 +05:30
private
attr_reader :project, :options
2017-08-17 22:00:37 +05:30
end
end
end
end