
Module::New::Recipe::Dist - create a new distribution

From the shell/command line:
creates Module-Name directory for the distribution,
and trunk,
branches,
tags directories there,
and also several files and tests (including lib/Module/Name.pm) in the <Module-Name/trunk> directory.

module_new dist Module::Name --in t
creates a distribution in t/ directory, instead of the current directory.
module_new dist Module::Name --no_dirs
doesn't creates <Module-Name/trunk>, <Module-Name/branches>, <Module-Name/tags> directories for subversion, and creates various files including lib/Module/Name.pm just under the <Module-Name> directory.
module_new dist Module::Name --make=ModuleInstall
by default, Module::New creates ExtUtils::MakeMaker-based Makefile.PL, but with this option, you can make it to create Build.PL to use Module::Build (set this to ModuleBuild or MB for shortcut), or Makefile.PL powered by Module::Install (set this to ModuleInstall, or MI).
module_new dist Module::Name --edit
If set to true, you can edit lib/Module/Name.pm you created.

Kenichi Ishigaki, <ishigaki@cpan.org>

Copyright (C) 2007-2009 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.