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

NAME

MetaCPAN::Client::Author - An Author data object

VERSION

version 1.000001

DESCRIPTION

    my $author = $mcpan->author('MICKEY');

This represents a MetaCPAN author entity.

ATTRIBUTES

name

Author name.

pauseid

Author PAUSE ID.

email

Author's Email.

blog

Array of author's blog addresses.

Example:

    [
        {
            url  => "http://blogs.perl.org/users/brian_d_foy/"
            feed => "http://blogs.perl.org/users/brian_d_foy/atom.xml",
        }
    ]

city

Author's city.

country

Author's country.

dir

Author's directory of distribution and files.

Example: id/P/PE/PERLER

gravatar_url

Author's Gravatar.com user picture URL. This URL is generated using PAUSEID@cpan.org.

profile

Array of author's user profiles.

Example:

    [
        { name => "amazon",        id => "B002MRC39U"  },
        { name => "stackoverflow", id => "brian-d-foy" },
    ]

website

Array of Author's websites.

updated

user

AUTHORS

  • Sawyer X <xsawyerx@cpan.org>

  • Mickey Nasriachi <mickey@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Sawyer X.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.