NAME
Dist::Zilla::Plugin::SVK::Check - check your svk repository before releasing
VERSION
version 0.10
SYNOPSIS
In your dist.ini:
[SVK::Check]
allow_dirty = dist.ini
allow_dirty = README
changelog = Changes ; this is the default
DESCRIPTION
This plugin checks that svk is in a clean state before releasing. The following checks are performed before releasing:
there should be no unversioned files in the working copy
the working copy should be without local modifications. 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:
changelog - the name of your changelog file. defaults to Changes.
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 useallow_dirty =
to prohibit all local modifications.
AUTHOR
Dr Bean <drbean at (a) cpan dot (.) org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Dr Bean.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.