The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Parse::CPAN::Authors::Author - Represent a CPAN author

SYNOPSIS

  # ... 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

DESCRIPTION

This represents a CPAN author.

METHODS

new()

The new() method is used by Parse::CPAN::Authors to create author objects. You should not need to create them on your own.

email()

The email() method returns the email of the author.

name()

The name() method returns the name of the author.

pauseid()

The pauseid() method returns the Perl Authors Upload Server ID of the author.

AUTHOR

Leon Brocard <acme@astray.com>

COPYRIGHT

Copyright (C) 2004, Leon Brocard

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.