Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dist::zilla::plugin::prepender(3pm) [debian man page]

Dist::Zilla::Plugin::Prepender(3pm)			User Contributed Perl Documentation		       Dist::Zilla::Plugin::Prepender(3pm)

NAME
Dist::Zilla::Plugin::Prepender - prepend lines at the top of your perl files VERSION
version 1.112280 SYNOPSIS
In your dist.ini: [Prepender] copyright = 0 line = use strict; line = use warnings; skip = t/data/.+.pl skip = something-else-unnecessary 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: o copyright - whether to insert a boilerplate copyright comment. defaults to true. o line - anything you want to add. may be specified multiple times. no default. o skip - regexp of file names to not prepend to. may be specified multiple times. no default. SEE ALSO
You can look for information on this module at: o Search CPAN http://search.cpan.org/dist/Dist-Zilla-Plugin-Prepender <http://search.cpan.org/dist/Dist-Zilla-Plugin-Prepender> o See open / report bugs http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dist-Zilla-Plugin-Prepender <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dist-Zilla-Plugin- Prepender> o Mailing-list (same as Dist::Zilla) <http://www.listbox.com/subscribe/?list_id=139292> o Git repository http://github.com/jquelin/dist-zilla-plugin-prepender <http://github.com/jquelin/dist-zilla-plugin-prepender> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Dist-Zilla-Plugin-Prepender <http://annocpan.org/dist/Dist-Zilla-Plugin-Prepender> o CPAN Ratings http://cpanratings.perl.org/d/Dist-Zilla-Plugin-Prepender <http://cpanratings.perl.org/d/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. perl v5.12.4 2011-08-27 Dist::Zilla::Plugin::Prepender(3pm)

Check Out this Related Man Page

Dist::Zilla::Plugin::Run(3pm)				User Contributed Perl Documentation			     Dist::Zilla::Plugin::Run(3pm)

NAME
Dist::Zilla::Plugin::Run - Run external commands at specific phases of Dist::Zilla VERSION
version 0.013 SYNOPSIS
[Run::BeforeRelease] run = script/myapp_before1.pl %s run = script/myapp_before2.pl %n %v [Run::Release] run = script/myapp_deploy1.pl %s run = deployer.pl --dir %d --tgz %a --name %n --version %v [Run::AfterRelease] run = script/myapp_after.pl %s %v ; %p can be used as the path separator if you have contributors on a different OS run = script%pmyapp_after.pl %s %v DESCRIPTION
Run arbitrary commands at various Dist::Zilla phases. CONVERSIONS
The following conversions/format specifiers are defined for passing as arguments to the specified commands (though not all values are available at all phases). o %a the archive of the release (available to all *Release phases) o %d the directory in which the dist was built (not in "BeforeBuild") o %n the dist name o %p path separator ('/' on Unix, '\' on Win32... useful for cross-platform dist.ini files) o %v the dist version o %x full path to the current perl interpreter (like $^X but from Config) Additionally %s is retained for backward compatibility. Each occurrence is replaced by a different value (like the regular "sprintf" function). Individual plugins define their own values for the positional replacement of %s. AUTHOR
Torsten Raudssus <torsten@raudssus.de> <http://www.raudssus.de/> COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Raudssus Social Software <http://www.raudssus.de/>. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.12.4 2011-11-09 Dist::Zilla::Plugin::Run(3pm)
Man Page