Welcome to mirror list, hosted at ThFree Co, Russian Federation.

contributor.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1c270bc9e6b745fe1b0ae1706c81caf55f87ece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  class Contributor
    attr_accessor :email, :name, :commits, :additions, :deletions

    def initialize
      @commits = 0
      @additions = 0
      @deletions = 0
    end
  end
end