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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
362 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
2022-05-07 20:08:51 +05:30
include Gitlab::CycleAnalytics::Summary::Defaults
2021-09-04 01:27:46 +05:30
def initialize(project:, options:)
2017-08-17 22:00:37 +05:30
@project = project
2021-09-04 01:27:46 +05:30
@options = options
2017-08-17 22:00:37 +05:30
end
2021-11-11 11:23:49 +05:30
private
attr_reader :project, :options
2017-08-17 22:00:37 +05:30
end
end
end
end