Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
Dist::Zilla::Plugin::Git::Check - check your git repository before releasing VERSION
version 1.121820 SYNOPSIS
In your dist.ini: [Git::Check] allow_dirty = dist.ini allow_dirty = README changelog = Changes ; this is the default DESCRIPTION
This plugin checks that git is in a clean state before releasing. The following checks are performed before releasing: o there should be no files in the index (staged copy) o there should be no untracked files in the working copy o the working copy should be clean. The files listed in "allow_dirty" can be modified locally, though. If those conditions are not met, the plugin will die, and the release will thus be aborted. This lets you fix the problems before continuing. The plugin accepts the following options: o changelog - the name of your changelog file. defaults to Changes. o allow_dirty - a file that is allowed to have local modifications. This option may appear multiple times. The default list is dist.ini and the changelog file given by "changelog". You can use "allow_dirty =" to prohibit all local modifications. 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.14.2 2012-06-30 Dist::Zilla::Plugin::Git::Check(3pm)

Check Out this Related 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)
Man Page