NAME
CPAN::PackageDetails::Entry - Handle a single record of 02packages.details.txt.gz
SYNOPSIS
Used internally by CPAN::PackageDetails
DESCRIPTION
An entry is a single line from 02packages.details.txt that maps a package name to a source. It's a whitespace-separated list that has the values for the column identified in the "columns" field in the header.
By default, there are three columns: package name, version, and path.
Inside a CPAN::PackageDetails object, the actual work and manipulation of the entries are handled by delegate classes specified in entries_class
and entry_class
). At the moment these are immutable, so you'd have to subclass this module to change them.
Methods
- new( FIELD1 => VALUE1 [, FIELD2 => VALUE2] )
-
Create a new entry
- path
- version
- package_name
-
Access values of the entry.
- as_string( @column_names )
-
Formats the Entry as text. It joins with whitespace the values for the column names you pass it. You get the newline automatically.
Any values that are not defined (or the empty string) turn into the literal string 'undef' to preserve the columns in the output.
TO DO
SEE ALSO
SOURCE AVAILABILITY
This source is in Github:
https://github.com/briandfoy/cpan-packagedetails
AUTHOR
brian d foy, <bdfoy@cpan.org>
COPYRIGHT AND LICENSE
Copyright © 2009-2018, brian d foy <bdfoy@cpan.org>. All rights reserved.
You may redistribute this under the terms of the Artistic License 2.0.