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

24 lines
495 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Gitlab
module CycleAnalytics
module Summary
class Base
2019-12-21 20:55:43 +05:30
def initialize(project:, from:, to: nil)
2017-08-17 22:00:37 +05:30
@project = project
@from = from
2019-12-21 20:55:43 +05:30
@to = to
2017-08-17 22:00:37 +05:30
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