Subject: | Use Module::ThirdParty to identify modules outside CPAN |
Hello Jos,
As we discussed on IRC, a neat thing for CPANPLUS would be to use Module::ThirdParty to identify modules that are not present on the CPAN but are provided by third-party softwares.
See http://search.cpan.org/dist/Module-ThirdParty/ for the documentation of this module. As the examples show, you can write code as simple as
if(is_3rd_party($module)) {
my $info = module_information($module);
# print some information using $info
}
where $module is a module name, like "SVN::Core" or "Text::ChaSen".
Feel free to bug me if you have any question :-)
Thanks in advance