NAME
Dist::Zilla::Plugin::Subversion::Check - check SVN working copy before release
SYNOPSIS
In your dist.ini:
[Subversion::Check] # you may want to disable individual checks (uncomment) #check_up2date = 0 #check_uncommited = 0 #check_missing = 0 #check_untracked = 0
DESCRIPTION
This plugin checks your current working copy before doing a dzil release.
The plugin accepts the following options:
check_up2date
(default: 1) - check if working copy is up-to-date.check_uncommited
(default: 1) - check if the working copy has uncommited changes.check_missing
(default: 1) - check if files in the working copy are missing.check_untracked
(default: 1) - check if there are untracked files in the current working copy.
AUTHOR
Markus Benning
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Markus Benning
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.