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: d74d5a86aa08f4c1ed7e2930ee59081d30704af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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

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