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