debian-mirror-gitlab/lib/gitlab/cycle_analytics/summary_helper.rb
2020-05-24 23:13:21 +05:30

20 lines
412 B
Ruby

# frozen_string_literal: true
module Gitlab
module CycleAnalytics
module SummaryHelper
def frequency(count, from, to)
return Summary::Value::None.new if count.zero?
freq = (count / days(from, to)).round(1)
Summary::Value::Numeric.new(freq)
end
def days(from, to)
[(to.end_of_day - from.beginning_of_day).fdiv(1.day), 1].max
end
end
end
end