The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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--indexer.git

AUTHOR

brian d foy, <bdfoy@cpan.org>

COPYRIGHT AND LICENSE

Copyright (c) 2010, brian d foy, All Rights Reserved.

You may redistribute this under the same terms as Perl itself.