debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary/group/base.rb
2019-12-26 22:10:19 +05:30

26 lines
563 B
Ruby

# frozen_string_literal: true
module Gitlab
module CycleAnalytics
module Summary
module Group
class Base
attr_reader :group, :options
def initialize(group:, options:)
@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