Merge pull request #59 from NumEricR/gists-number

Restore gists number on statusScore - Fix #57
This commit is contained in:
David Coallier
2013-05-20 13:33:59 -07:00

View File

@@ -153,8 +153,8 @@ var run = function() {
var FIFTH_STEP = 150;
var EXTRA_POINT_GAIN = 1;
var statusScore = view.repos * COEF_REPOS
+ data.public_repos * COEF_GISTS
var statusScore = data.public_repos * COEF_REPOS
+ data.public_gists * COEF_GISTS
+ data.followers * COEF_FOLLOWERS
+ data.following * COEF_FOLLOWING;