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

27 lines
563 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
module Gitlab
module CycleAnalytics
module Summary
module Group
class Base
2019-12-26 22:10:19 +05:30
attr_reader :group, :options
2019-10-12 21:52:04 +05:30
2019-12-26 22:10:19 +05:30
def initialize(group:, options:)
2019-10-12 21:52:04 +05:30
@group = group
@options = options
end
def title
raise NotImplementedError.new("Expected #{self.name} to implement title")
end
def value
raise NotImplementedError.new("Expected #{self.name} to implement value")
end
end
end
end
end
end