| Parse-CPAN-Authors documentation | Contained in the Parse-CPAN-Authors distribution. |
Parse::CPAN::Authors::Author - Represent a CPAN author
# ... objects are returned by Parse::CPAN::Authors
my $author = $p->author('LBROCARD');
print $author->email, "\n"; # leon@astray.com
print $author->name, "\n"; # Leon Brocard
print $author->pauseid, "\n"; # LBROCARD
This represents a CPAN author.
The new() method is used by Parse::CPAN::Authors to create author objects. You should not need to create them on your own.
The email() method returns the email of the author.
The name() method returns the name of the author.
The pauseid() method returns the Perl Authors Upload Server ID of the author.
Leon Brocard <acme@astray.com>
Copyright (C) 2004, Leon Brocard
This module is free software; you can redistribute it or modify it under the same terms as Perl itself.
| Parse-CPAN-Authors documentation | Contained in the Parse-CPAN-Authors distribution. |
package Parse::CPAN::Authors::Author; use strict; use base qw( Class::Accessor::Fast ); __PACKAGE__->mk_accessors(qw( pauseid name email )); 1; __END__