I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2005-03-02 02:53:59-08 by itub in response to 44
Re: CPAN::Mini of the Future!

This sounds like it is contemplated in your plans already, but here's an example of something I wanted to do:

I subclassed CPAN::Mini and I wanted to do some processing on each new file as it was fetched. The way I ended up doing it was copying and pasting mirror_file() into my subclass, and then adding a line after if ( $status == RC_OK ) saying $self->post_mirror($local_file) and doing all the postprocessing in post_mirror(). It would have been more convenient if the base class already had that hook, with an empty post_mirror() by default.

Direct Responses: Write a response