NAME
Dist::Zilla::Plugin::Prepender - prepend lines at the top of your perl files
VERSION
version 0.1.0
SYNOPSIS
In your dist.ini:
[Prepender]
line = # This file is part of Foo::Bar
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. =head1 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.