Module::New::File::ShipIt - Module::New::File::ShipIt documentation


Module-New documentation Contained in the Module-New distribution.

Index


Code Index:

NAME

Top

Module::New::File::ShipIt

DESCRIPTION

Top

a template for a .shipit file.

AUTHOR

Top

Kenichi Ishigaki, <ishigaki at cpan.org>

COPYRIGHT AND LICENSE

Top


Module-New documentation Contained in the Module-New distribution.

package Module::New::File::ShipIt;

use strict;
use warnings;
use Module::New::File;

file '.shipit' => content { return <<'EOT';
steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN

# if directory, where the normal "make dist" puts its file.
#MakeDist.destination = ~/shipit-dist
#svn.tagpattern = ShipIt-%v
EOT
};

1;

__END__