summaryrefslogtreecommitdiff
path: root/lib/gitlab/contributor.rb
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