App-Deps-Verify

 view release on metacpan or  search on metacpan

lib/App/Deps/Verify/App/VerifyDeps/Command/plinst.pm  view on Meta::CPAN

sub description { return abstract(); }

sub opt_spec
{
    return (
        [ "input|i=s\@", "the input files" ],
        [ "notest",      "speed up installation by skipping the tests" ],
    );
}

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

    # no args allowed but options!
    $self->usage_error("No args allowed") if @$args;
}

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

lib/App/Deps/Verify/App/VerifyDeps/Command/plupdatetask.pm  view on Meta::CPAN

sub description { return abstract(); }

sub opt_spec
{
    return (
        [ "input|i=s\@", "the input files" ],
        [ "mutate=s",    "the .pm file to mutate" ],
    );
}

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

    # no args allowed but options!
    $self->usage_error("No args allowed") if @$args;
}

sub _mutate
{
    my ( $self, $text, $toadd ) = @_;

lib/App/Deps/Verify/App/VerifyDeps/Command/py3list.pm  view on Meta::CPAN


sub abstract { "list python3 dependencies from PyPI" }

sub description { return abstract(); }

sub opt_spec
{
    return ( [ "input|i=s\@", "the input files" ], );
}

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

    # no args allowed but options!
    $self->usage_error("No args allowed") if @$args;
}

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

lib/App/Deps/Verify/App/VerifyDeps/Command/verify.pm  view on Meta::CPAN

sub description { return abstract(); }

sub opt_spec
{
    return (
        [ "output|o=s",  "path to output file" ],
        [ "input|i=s\@", "the input files" ],
    );
}

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

    # no args allowed but options!
    $self->usage_error("No args allowed") if @$args;
}

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



( run in 0.567 second using v1.01-cache-2.11-cpan-a5abf4f5562 )