NAME
MyCPAN::App::DPAN::SVNPostFlight - A No-op postflight class
SYNOPSIS
Use this from dpan
by specifying it as the postflight_class
class:
# in dpan.conf
postflight_class MyCPAN::App::DPAN::NullPostFlight
DESCRIPTION
This class is an example for a user-defined class to run at the end of dpan
's normal processing. The class only needs to provide a run
method, which is automatically called by dpan
. Be careful that you don't import anything called run
(looking at you, IPC::Run
)!
This example merely prints a message to show you that it ran. You might want to use this class while you're trying to work out your process but you don't want to do any post flight processing just yet.
Logging
This module has no logging.
Writing your own
If you want to maek your own class, check out the source for run
. The code comments explain what you should be doing. After that it's up to you to figure out what to do.
Methods
- run
-
dpan
calls this method automtically.
SEE ALSO
MyCPAN::App::DPAN, dpan
SOURCE AVAILABILITY
This code is in Github:
git://github.com/briandfoy/mycpan-app-dpan.git
AUTHOR
brian d foy, <bdfoy@cpan.org>
COPYRIGHT AND LICENSE
Copyright © 2010-2018, brian d foy <bdfoy@cpan.org>. All rights reserved.
You may redistribute this under the terms of the Artistic License 2.0.