debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary/base.rb
2021-12-11 22:18:48 +05:30

30 lines
569 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
def links
[]
end
private
attr_reader :project, :options
end
end
end
end