gitlab-org--gitlab-foss/lib/gitlab/contributor.rb

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

14 lines
230 B
Ruby
Raw Normal View History

# 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