App-Git-Spark
view release on metacpan or search on metacpan
"develop" : {
"requires" : {
"Pod::Coverage::TrustPod" : "0",
"Test::CPAN::Meta" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08"
}
},
"runtime" : {
"requires" : {
"DateTime" : "0",
"Encode" : "0",
"Getopt::Long::Descriptive" : "0",
"List::AllUtils" : "0",
"Math::Round" : "0",
"Term::Spark" : "0",
"Term::Vspark" : "0",
"perl" : "5.008",
"strict" : "0",
"utf8" : "0",
"warnings" : "0"
- xt
- examples
- corpus
package:
- DB
provides:
App::Git::Spark:
file: lib/App/Git/Spark.pm
version: 0.006
requires:
DateTime: 0
Encode: 0
Getopt::Long::Descriptive: 0
List::AllUtils: 0
Math::Round: 0
Term::Spark: 0
Term::Vspark: 0
perl: 5.008
strict: 0
utf8: 0
warnings: 0
Makefile.PL view on Meta::CPAN
"ExtUtils::MakeMaker" => "6.30"
},
"DISTNAME" => "App-Git-Spark",
"EXE_FILES" => [
"bin/git-spark",
"bin/git-vspark"
],
"LICENSE" => "perl",
"NAME" => "App::Git::Spark",
"PREREQ_PM" => {
"DateTime" => 0,
"Encode" => 0,
"Getopt::Long::Descriptive" => 0,
"List::AllUtils" => 0,
"Math::Round" => 0,
"Term::Spark" => 0,
"Term::Vspark" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
bin/git-spark view on Meta::CPAN
#!/usr/bin/env perl
# Inspired by @trisweb:
# http://github.com/holman/spark/wiki/Wicked-Cool-Usage
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
bin/git-vspark view on Meta::CPAN
#!/usr/bin/env perl
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(
t/00-report-prereqs.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use ExtUtils::MakeMaker;
use File::Spec::Functions;
use List::Util qw/max/;
my @modules = qw(
DateTime
Encode
ExtUtils::MakeMaker
File::Find
File::Spec::Functions
File::Temp
Getopt::Long::Descriptive
List::AllUtils
List::Util
Math::Round
Term::Spark
( run in 0.287 second using v1.01-cache-2.11-cpan-05444aca049 )