NAME
Dist::Zilla::Plugin::Prepender - prepend lines at the top of your perl files
VERSION
version 0.2.0
SYNOPSIS
In your dist.ini:
[Prepender]
copyright = 1
line = use strict;
line = use warnings;
DESCRIPTION
This plugin will prepend the specified lines in each Perl module or program within the distribution. For scripts having a shebang line, lines will be inserted just after it.
This is useful to enforce a set of pragmas to your files (since pragmas are lexical, they will be active for the whole file), or to add some copyright comments, as the fsf recommends.
The module accepts the following options in its dist.ini section:
copyright - whether to insert a boilerplate copyright comment. defaults to false.
line - anything you want to add. may be specified multiple times. no default.
BUGS
Please report any bugs or feature request to <bug-dist-zilla-plugin-prepender@rt.cpan.org>
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dist-Zilla-Plugin-Prepender.
AUTHOR
Jerome Quelin
COPYRIGHT AND LICENSE
This software is copyright (c) 2009 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.