mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
10 lines
187 B
Ruby
10 lines
187 B
Ruby
module Gitlab
|
|
class Contributor
|
|
attr_accessor :email, :name, :commits, :additions, :deletions
|
|
|
|
def initialize
|
|
@commits, @additions, @deletions = 0, 0, 0
|
|
end
|
|
end
|
|
end
|