The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use App::Reprove;
App::Reprove->new_with_options->run;

__END__

=head1 NAME

reprove - command to download a distribution's tests and prove them

=head1 SYNOPSIS

  reprove --verbose \
    --author="TOBYINK" \
    --release="Object-AUTHORITY" \
    --version="0.001"

or:

  reprove --verbose Object-AUTHORITY 0.001 TOBYINK

=head1 DESCRIPTION

This script wraps around L<App::Reprove>.

=head2 Command-Line Options

=over

=item C<< --release >>

=item C<< --module >>

=item C<< --author >>

=item C<< --version >>

=item C<< --verbose >>

=item C<< --help >>

=back

Positional command-line parameters may be used to set release/module,
version and author.

If this script needs to disambiguate between a release and a module,
it assumes anything containing "::" is a module, and everything else
is a release. A prefix of "::" forces the string to be treated as a
module.

=head1 BUGS

Please report any bugs to
L<http://rt.cpan.org/Dist/Display.html?Queue=App-Reprove>.

=head1 SEE ALSO

L<App::Reprove>, L<Module::Reprove>.

=head1 AUTHOR

Toby Inkster E<lt>tobyink@cpan.orgE<gt>.

=head1 COPYRIGHT AND LICENCE

This software is copyright (c) 2011 by Toby Inkster.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 DISCLAIMER OF WARRANTIES

THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.