gitlab-org--gitlab-foss/lib/gitlab/cycle_analytics/summary/group/base.rb
Małgorzata Ksionek 5ce4236b66 Add code review remarks
Add cr remarks

Improve specs according to the review

Fix schema

Add cr remarks

Fix naming

Add cr remarks
2019-07-23 12:01:39 +02:00

27 lines
602 B
Ruby

# 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