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


Parse-CPAN-Authors documentation Contained in the Parse-CPAN-Authors distribution.

Index


Code Index:

NAME

Top

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

SYNOPSIS

Top

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

Top

This represents a CPAN author.

METHODS

Top

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

Top

Leon Brocard <acme@astray.com>

COPYRIGHT

Top


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__