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

28 lines
602 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
attr_reader :group, :from, :options
def initialize(group:, from:, options:)
@group = group
@from = from
@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