Module::New::File::Changes - Module::New::File::Changes documentation


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

Index


Code Index:

NAME

Top

Module::New::File::Changes

DESCRIPTION

Top

a template for Changes file.

AUTHOR

Top

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Module::New::File::Changes;

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

file 'Changes' => content { return <<'EOT';
Revision history for <%= $c->distname %>

0.01 <%= $c->date->ymd('/') %>
  - initial release
EOT
};

1;

__END__