App-Git-Spark
view release on metacpan or search on metacpan
bin/git-spark view on Meta::CPAN
use strict;
use warnings;
use Getopt::Long::Descriptive;
use Encode qw/encode decode/;
use DateTime;
use List::AllUtils qw/max sum/;
use Math::Round qw/round/;
use Term::Spark qw/show_graph/;
binmode STDOUT, ':encoding(UTF-8)';
our $VERSION = '0.006'; # VERSION
# PODNAME: git-spark
my ($option, $usage) = describe_options(
'usage: git spark %o [AUTHOR]',
['hours|o=i' => 'Commits from the last x hours'],
['days|d=i' => 'Commits from the last x days'],
['weeks|w=i' => 'Commits from the last x weeks'],
bin/git-vspark view on Meta::CPAN
use strict;
use warnings;
use Getopt::Long::Descriptive;
use DateTime;
use List::AllUtils qw/max sum/;
use Math::Round qw/round/;
use Term::Vspark qw/show_graph/;
binmode STDOUT, ':encoding(UTF-8)';
our $VERSION = '0.006'; # VERSION
# PODNAME: git-spark
my ($option, $usage) = describe_options(
'usage: git vspark %o [AUTHOR]',
['hours|o=i' => 'Commits from the last x hours'],
['days|d=i' => 'Commits from the last x days'],
['weeks|w=i' => 'Commits from the last x weeks'],
['months|m=i' => 'Commits from the last x months'],
( run in 0.552 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )