This is the first "announced release" of KABLAME!

KABLAME! started as a way for me to show my managers that half of the
development team wasn't writing any tests.  It was a stupid Rails
plugin that I've now turned into a stupid gem.  It uses scm blame
commands to determine how many lines project contributors have
written.  It currently works with git and svn.

The gem installs a pair of binaries, git-kablame and svn-kablame,
which can be used to KABLAME a project.

Usage example:

git-kablame lib specs  -> Runs git blame on every .rb file in these
directories and returns a list of contributors and the lines they've
written.

Example output:

++++++++++++TOTALS++++++++++++
**WINNER**  tom  **WINNER**
tom          ==> 1115
dick         ==>  750
harry        ==>  369
**LOSER**  harry  **LOSER**


So give it a try and see if you're the most prolific coder on your team.

gem install kablame

Check out the (very limited) docs at rubyforge:
http://kablame.rubyforge.org

Check out the source at github:
git://github.com/jdunphy/kablame-gem.git