App-GitWorkspaceScanner
view release on metacpan or search on metacpan
'Data::Dumper' => 0,
'File::Spec' => 0,
'Getopt::Long' => 0,
'Git::Repository' => 0,
'Log::Any' => 0,
'Log::Any::Adapter' => 0,
'Pod::Find' => 0,
'Pod::Usage' => 0,
'Pod::Usage' => 0,
'Readonly' => 0,
'Try::Tiny' => 0,
'perl' => 5.010,
},
add_to_cleanup =>
[
'App-GitWorkspaceScanner-*',
],
create_makefile_pl => 'traditional',
configure_requires =>
{
'Module::Build' => 0,
"Carp" : "0",
"Data::Dumper" : "0",
"File::Spec" : "0",
"Getopt::Long" : "0",
"Git::Repository" : "0",
"Log::Any" : "0",
"Log::Any::Adapter" : "0",
"Pod::Find" : "0",
"Pod::Usage" : "0",
"Readonly" : "0",
"Try::Tiny" : "0",
"perl" : "5.01"
}
}
},
"provides" : {
"App::GitWorkspaceScanner" : {
"file" : "lib/App/GitWorkspaceScanner.pm",
"version" : "v1.1.0"
}
},
Carp: '0'
Data::Dumper: '0'
File::Spec: '0'
Getopt::Long: '0'
Git::Repository: '0'
Log::Any: '0'
Log::Any::Adapter: '0'
Pod::Find: '0'
Pod::Usage: '0'
Readonly: '0'
Try::Tiny: '0'
perl: '5.01'
resources:
bugtracker: https://github.com/guillaumeaubert/App-GitWorkspaceScanner/issues
homepage: https://metacpan.org/release/App-GitWorkspaceScanner
license: http://dev.perl.org/licenses/
repository: https://github.com/guillaumeaubert/App-GitWorkspaceScanner
version: v1.1.0
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
WriteMakefile
(
'VERSION_FROM' => 'lib/App/GitWorkspaceScanner.pm',
'PL_FILES' => {},
'PREREQ_PM' => {
'Pod::Find' => 0,
'File::Spec' => 0,
'Log::Any' => 0,
'Carp' => 0,
'Try::Tiny' => 0,
'Git::Repository' => 0,
'Test::More' => 0,
'Readonly' => 0,
'Test::FailWarnings' => 0,
'Log::Any::Adapter' => 0,
'Pod::Usage' => 0,
'Data::Dumper' => 0,
'Getopt::Long' => 0
},
'test' => {
lib/App/GitWorkspaceScanner.pm view on Meta::CPAN
# External dependencies.
use Carp qw( croak );
use Data::Dumper;
use File::Spec;
use Getopt::Long;
use Git::Repository;
use Log::Any qw( $log );
use Pod::Find qw();
use Pod::Usage qw();
use Readonly;
use Try::Tiny;
=head1 NAME
App::GitWorkspaceScanner - Scan git repositories in your workspace for local changes not synced up.
=head1 VERSION
Version 1.1.0
( run in 0.737 second using v1.01-cache-2.11-cpan-05444aca049 )