arquillian / arquillian.github.io

Arquillian website source (develop branch) and hosting (master branch). Baked with Awestruct.
http://arquillian.org
Other
78 stars 147 forks source link

More details about the contributors #167

Open bartoszmajsak opened 11 years ago

bartoszmajsak commented 11 years ago

Could be really cool to have list of contributions for each contributor we have on the list. I think something based on git-shortlog can be a good start. Another idea might be to intregrate with ohloh (number of commits per repo etc).

Having this kind of statistics can be later leveraged for some gamification stuff (badges etc.)

graphitefriction commented 11 years ago

This reminds me that I've been meaning to check out ohloh since Oscon and see how it presents its data. Now I also know I should check out git-shortlog :D

On Mon, Oct 22, 2012 at 4:46 AM, Bartosz Majsak notifications@github.comwrote:

Could be really cool to have list of contributions for each contributor we have on the list. I think something based on git-shortlog can be a good start. Another idea might be to intregrate with ohloh (number of commits per repo etc).

Having this kind of statistics can be later leveraged for some gamification stuff (badges etc.)

— Reply to this email directly or view it on GitHubhttps://github.com/arquillian/arquillian.github.com/issues/167.

mojavelinux commented 11 years ago

Wow, I never knew about git shortlog. For how fast it runs, that information must be indexed. I'm wondering whether I can speed up some operations in the extension by using this command.

Btw, this is your "leaderboard" command:

git shortlog -n

:)

mojavelinux commented 11 years ago

Omg, this command would drastically simplify the logic in arquillian.rb. I can get a list of all contributors for a release in one shot:

git shortlog -e commitA..commitB subpath/

That's almost all the data I'm capturing manually by walking commits.

bartoszmajsak commented 11 years ago

I had this feeling that this stuff might be really useful :)

bartoszmajsak commented 11 years ago

Closed by accident, sorry!

aslakknutsen commented 11 years ago

ha.. nice command :) Fairly simple to parse the output