#!/usr/bin/env perl

package
	scaffolder;

# ABSTRACT: Application for scaffolding using templates

use strict;
use warnings;
use App::Scaffolder;
App::Scaffolder->run();


__END__
=pod

=head1 NAME

scaffolder - Application for scaffolding using templates

=head1 VERSION

version 0.002000

=head1 SYNOPSIS

	# List available commands:
	$ scaffolder

	# Display help for the given command:
	$ scaffolder help <command>

	# Create scaffold:
	$ scaffolder <command> --template mytemplate ...

=head1 DESCRIPTION

The C<scaffolder> application is an L<App::Cmd|App::Cmd>-based program to create
skeletons. However, the main C<App-Scaffolder>-distribution contains no actual
commands, it merely provides a small framework to actually implement commands
that create such skeletons.

=head1 SEE ALSO

=over

=item *

L<App::Scaffolder|App::Scaffolder>

=item *

L<App::Scaffolder::Command|App::Scaffolder::Command>

=back

=head1 AUTHOR

Manfred Stock <mstock@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Manfred Stock.

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

