You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

stats 509 B

2 years ago
12345678910111213141516
  1. #!/usr/bin/env sh
  2. echo 'Commits'
  3. git log --pretty=format:'' | wc -l
  4. echo 'Contributors'
  5. git log --pretty=short --no-merges | git shortlog -ne | egrep -ve '^ +' | egrep -ve '^$' | wc -l
  6. echo 'Resolved bugs/feature requests'
  7. egrep -e '^\*' History.md | wc -l
  8. echo 'Open tickets'
  9. curl -s https://api.github.com/repos/cucumber/cucumber/issues?state=open | ruby -e "require 'multi_json'; puts MultiJson.load(STDIN.read).length"
  10. echo 'Group members'
  11. curl -s http://groups.google.com/group/cukes | grep Members

No Description

Contributors (1)