debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary/base.rb
2019-12-21 20:55:43 +05:30

24 lines
495 B
Ruby

# frozen_string_literal: true
module Gitlab
module CycleAnalytics
module Summary
class Base
def initialize(project:, from:, to: nil)
@project = project
@from = from
@to = to
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