App-gimpgitbuild

 view release on metacpan or  search on metacpan

lib/App/gimpgitbuild/Command/cleanbuild.pm  view on Meta::CPAN

package App::gimpgitbuild::Command::cleanbuild;
$App::gimpgitbuild::Command::cleanbuild::VERSION = '0.32.1';
use strict;
use warnings;
use autodie;
use 5.014;

use App::gimpgitbuild -command;

use App::gimpgitbuild::API::Worker ();

sub description
{
    return "clean the GIMP build checkouts";
}

sub abstract
{
    return shift->description();
}

sub opt_spec
{
    return ();


}

sub execute
{
    my ( $self, $opt, $args ) = @_;

    my $worker = App::gimpgitbuild::API::Worker->new(
        { _mode => 'clean', _process_executor => 'perl', } );

    $worker->_run_the_mode_on_all_repositories();

    use Term::ANSIColor qw/ colored /;
    print colored( [ $ENV{HARNESS_SUMMARY_COLOR_SUCCESS} || 'bold green' ],
        "\n== Success ==\n\n" );
    return;
}

1;

__END__

=pod

=encoding UTF-8

=head1 VERSION

version 0.32.1

=begin foo return (
        [ "output|o=s", "Output path" ],
        [ "title=s",    "Chart Title" ],
        [ 'exec|e=s@',  "Execute command on the output" ]
    );
=end foo

=head1 NAME

gimpgitbuild cleanbuild - clean the build checkouts / working copies.


=end foo

=for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan

=head1 SUPPORT

=head2 Websites

The following websites have more information about this module, and may be of help to you. As always,
in addition to those websites please use your favorite search engine to discover more resources.

=over 4

=item *

MetaCPAN

A modern, open-source CPAN search engine, useful to view POD in HTML format.

L<https://metacpan.org/release/App-gimpgitbuild>

=item *

RT: CPAN's Bug Tracker

The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.

L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-gimpgitbuild>

=item *

CPANTS



( run in 1.330 second using v1.01-cache-2.11-cpan-98e64b0badf )