#!/usr/bin/env perl
# @(#)Ident: module_provision 2013-04-24 04:03 pjf ;

use strict;
use warnings;
use version; our $VERSION = qv( sprintf '0.6.%d', q$Rev: 58 $ =~ /\d+/gmx );

use Module::Provision;

exit Module::Provision->new_with_options( nodebug => 1 )->run;

__END__

=pod

=encoding utf8

=head1 NAME

module_provision - Create new Perl distributions

=head1 SYNOPSIS

=over 3

=item B<module_provision> B<dist> I<Your::Distribution>

Creates a new distribution with a C<git> repository and a
L<Module::Build> toolchain

=item B<module_provision> B<-H> | B<-h> I<[method]> | B<-?>

Display man page / method help  / usage strings

=item B<module_provision> B<list_methods>

Lists the methods available in this program

=back

=head1 VERSION

This documents version v0.3.$Rev: 58 $ of L<Module::Provision>

=head1 DESCRIPTION

Create Perl distributions with VCS and Module::Build toolchain

=head1 REQUIRED ARGUMENTS

=over 3

=item I<Your::Distribution>

The package name of the new distribution to create

=back

=head1 OPTIONS

=over 3

=item B<-D>

Turn debugging on

=back

=head1 DIAGNOSTICS

Prints errors to stderr

=head1 EXIT STATUS

Returns zero on success, non zero on failure

=head1 CONFIGURATION

Uses the constructor's C<appclass> attribute to locate a configuration file

=head1 DEPENDENCIES

=over 3

=item L<Module::Provision>

=back

=head1 INCOMPATIBILITIES

None

=head1 BUGS AND LIMITATIONS

Send reports to address below

=head1 AUTHOR

Peter Flanigan, C<< <Support at RoxSoft dot co dot uk> >>

=head1 LICENSE AND COPYRIGHT

Copyright (c) 2013 Peter Flanigan

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

=cut

# Local Variables:
# mode: perl
# tab-width: 3
# End:
