NAME

SVN::Churn - generate a graph for repository churn

SYNOPSIS

use SVN::Churn;
my $churn = SVN::Churn->new(
    path     => 'http://opensource.fotango.com/svn/trunk/SVN-Churn',
    database => 'churn.db' );
$churn->update;
$churn->save;
$churn->graph( 'churn.png' );

DESCRIPTION

SVN::Churn is a module for generating Churn graphs. Churn graphs simply track the number of changed lines in a repository, grouped by a time period; they might be useful for judging the stability of a codebase, or the activeness of a project, or they may not be.

TODO

  • Generate Graaph between dates

  • Document a little more

AUTHOR

Richard Clamp <richardc@unixbeard.net>

COPYRIGHT

Copyright 2004 Fotango. All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO