File: stats

package info (click to toggle)
cucumber 2.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,076 kB
  • sloc: ruby: 17,016; javascript: 4,641; makefile: 12; sh: 10; tcl: 3
file content (16 lines) | stat: -rwxr-xr-x 509 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env sh

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 https://api.github.com/repos/cucumber/cucumber/issues?state=open | ruby -e "require 'multi_json'; puts MultiJson.load(STDIN.read).length"

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