Skip to content

Commit

Permalink
Added some simple stats
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Jun 9, 2011
1 parent a7d1498 commit 0c723d5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions gem_tasks/stats
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
echo 'Commits'
git log --pretty=format:'' | wc -l

echo 'Contributors'
git log --pretty=short --no-merges | git shortlog -ne | egrep -ve '^ +' | egrep -ve '^$' | wc -l

echo 'Resolved bugs/feature requests'
egrep -e '^\*' History.md | wc -l

echo 'Open tickets'
curl -s http://github.com/api/v2/json/issues/list/cucumber/cucumber/open | ruby -e "require 'json'; puts JSON.parse(STDIN.read)['issues'].length"

echo 'Group members'
curl -s http://groups.google.com/group/cukes | grep Members

0 comments on commit 0c723d5

Please sign in to comment.