$App::GitGot::Command::list::VERSION = '1.28'; # TRIAL
# ABSTRACT: list managed repositories
use 5.014;
use Class::Load 'try_load_class';
use App::GitGot -command;
use Moo;
sub command_names { qw/ list ls / }
sub options {
my( $class , $app ) = @_;
return (
[ 'json|j' => 'stream output as JSON' ] ,
);
}
sub _execute {
my( $self, $opt, $args ) = @_;
if ( $self->opt->json ) {
try_load_class( 'JSON' )
or die "json serializing requires the module 'JSON' to be installed\n";
my @data = map { {%$_} } $self->active_repos;
say JSON::to_json( \@data, { pretty => 1 } );
return;
}
for my $repo ( $self->active_repos ) {
my $repo_remote = ( $repo->repo and -d $repo->path ) ? $repo->repo
: ( $repo->repo ) ? $repo->repo . ' (Not checked out)'
: ( -d $repo->path ) ? 'NO REMOTE'
: 'ERROR: No remote and no repo?!';
printf "%3d) ", $repo->number;
if ( $self->quiet ) { say $repo->label }
else {
my $max_len = $self->max_length_of_an_active_repo_label;
printf "%-${max_len}s %-4s %s\n", $repo->label, $repo->type, $repo_remote;
if ( $self->verbose and $repo->tags ) {
printf " tags: %s\n" , $repo->tags
}
}
}
}
1;
## FIXME docs
__END__
=pod
=encoding UTF-8
=head1 NAME
App::GitGot::Command::list - list managed repositories
=head1 VERSION
version 1.28
=head1 AUTHOR
John SJ Anderson <genehack@genehack.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by John SJ Anderson.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut