Module::New::File::Readme - Module::New::File::Readme documentation


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

Index


Code Index:

NAME

Top

Module::New::File::Readme

DESCRIPTION

Top

a template for README 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::Readme;

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

file 'README' => content { return <<'EOT';
<%= $c->distname %>

INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install

COPYRIGHT AND LICENSE

Copyright (C) <%= $c->date->year %> <%= $c->config('author') %>

<%= $c->license %>
EOT
};

1;

__END__