in reply to Re^3: Searching for Modules and Descriptions on CPAN Remotely
in thread Searching for Modules and Descriptions on CPAN Remotely
I am searching for all the Catalyst::Plugin::* modules.
They all appear, but because most of the authors haven't registered the namespace, the descriptions don't show:
use strict; use warnings; use Carp; use Regexp::DefaultFlags; use CPANPLUS::Backend; my $cb = CPANPLUS::Backend->new or croak "Can't create new CPANPLUS::Backend object"; my @cat_plugins = $cb->search( type => 'module', allow => [ qr/\A Cata +lyst::Plugin/ ], ); for my $plugin (@cat_plugins) { print $plugin->name, "\n"; print $plugin->description, "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Searching for Modules and Descriptions on CPAN Remotely
by adrianh (Chancellor) on Jan 23, 2006 at 15:56 UTC | |
by ghenry (Vicar) on Jan 23, 2006 at 16:38 UTC | |
by randyk (Parson) on Jan 23, 2006 at 21:23 UTC | |
by ghenry (Vicar) on Jan 24, 2006 at 10:12 UTC | |
by randyk (Parson) on Jan 24, 2006 at 20:21 UTC | |
by adrianh (Chancellor) on Jan 23, 2006 at 16:42 UTC |