| CPAN-Packager documentation | Contained in the CPAN-Packager distribution. |
CPAN::Packager::DownloaderFactory - module downloader factory
Takatoshi Kitano <kitano.tk@gmail.com>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| CPAN-Packager documentation | Contained in the CPAN-Packager distribution. |
package CPAN::Packager::DownloaderFactory; use strict; use warnings; sub create { my ( $class, $downloader, $config ) = @_; my $builder_class = join '::', ( 'CPAN', 'Packager', 'Downloader', $downloader ); eval "require $builder_class;" or die "Can't load module $@"; ## no critic $builder_class->new; } 1; __END__