debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary/base.rb
2021-06-08 01:23:25 +05:30

23 lines
487 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, "Expected #{self.name} to implement title"
end
def value
raise NotImplementedError, "Expected #{self.name} to implement value"
end
end
end
end
end