-
-
11 Nov 2004 09:55:44 UTC
- Distribution: Parse-CPAN-Modlist
- Module version: 0.9
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (625 / 1 / 0)
- Kwalitee
Bus factor: 0- 90.80% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (86.63KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 3 contributors- Copyright (c) 2004,
-
Simon Wistow
- based on code from C<CPANPLUS> by Jos Boumans.
- Dependencies
- Class::Accessor::Fast
- Test::More
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Parse::CPAN::Modlist - Parse 03packages.data.gz
SYNOPSIS
use Parse::CPAN::Modlist; my $p = Parse::CPAN::Modlist->new("t/data/03modlist.data"); foreach my $name ($p->modules) { my $module = $p->module($name); print " The module '".$module->name."'". " is written by ".$module->author. " and is described as '".$module->description. "'\n"; }
DESCRIPTION
The CPAN module list is a non-comprehensive list of modules on CPAN.
Or, more exactly, it's a comprehensive list of registered modules on CPAN.
http://www.cpan.org/modules/00modlist.long.html has more details.
Methods
new <filename|data>
Creates a new
Parse::CPAN::Modlist
object and parses the data passed in.You can either pass in the path to a (not gzipped) file or the data from an 03modlist.data file.
parse
Internal method which parses the 03modlist.data file.
Called automatically by
new
.module <module name>
Returns a
Parse::CPAN::Modlist::Module
object representing the module name passed in or undef if that module is not in the module list.modules
Returns a list of the names of all modules in the module list
BUGS
None that I know of.
COPYING
Distributed under the same terms as Perl itself.
AUTHOR
Copyright (c) 2004,
Simon Wistow <simon@thegestalt.org>
based on code from
CPANPLUS
by Jos Boumans.SEE ALSO
Module Install Instructions
To install Parse::CPAN::Modlist, copy and paste the appropriate command in to your terminal.
cpanm Parse::CPAN::Modlist
perl -MCPAN -e shell install Parse::CPAN::Modlist
For more information on module installation, please visit the detailed CPAN module installation guide.