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

30 lines
577 B
Ruby

# frozen_string_literal: true
module Gitlab
module CycleAnalytics
module Summary
class DeploymentFrequency < Base
include SummaryHelper
def initialize(deployments:, from:, to: nil, project: nil)
@deployments = deployments
super(project: project, from: from, to: to)
end
def title
_('Deployment Frequency')
end
def value
@value ||= frequency(@deployments, @from, @to || Time.now)
end
def unit
_('per day')
end
end
end
end
end