| Acme-CPANAuthors-Canadian documentation | Contained in the Acme-CPANAuthors-Canadian distribution. |
Acme::CPANAuthors::Canadian - We are Canadian CPAN authors
use strict;
use warnings;
use Acme::CPANAuthors;
my $authors = Acme::CPANAuthors->new("Canadian");
my $number = $authors->count;
my @ids = $authors->id;
my @distros = $authors->distributions("ZOFFIX");
my $url = $authors->avatar_url("ZOFFIX");
my $kwalitee = $authors->kwalitee("ZOFFIX");
my $name = $authors->name("ZOFFIX");
See documentation for Acme::CPANAuthors for more details.
This class provides a hash of Canadian CPAN authors' PAUSE ID and name to
the Acme::CPANAuthors module.
We are Canadian CPAN authors:
Zoffix 'ZOFFIX' Znet
Karen 'ETHER' Etheridge
If you are a Canadian CPAN author not listed here, please send me your ID/name via email or RT so we can always keep this module up to date.
'Zoffix, <'zoffix at cpan.org'>
(http://zoffix.com/, http://haslayout.net/, http://zofdesign.com/)
Please report any bugs or feature requests to bug-acme-cpanauthors-canadian at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-CPANAuthors-Canadian. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Acme::CPANAuthors::Canadian
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-CPANAuthors-Canadian
Copyright 2008 'Zoffix, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Acme-CPANAuthors-Canadian documentation | Contained in the Acme-CPANAuthors-Canadian distribution. |
package Acme::CPANAuthors::Canadian; use warnings; use strict; our $VERSION = '0.0102'; use Acme::CPANAuthors::Register ( ZOFFIX => 'Zoffix Znet', ETHER => 'Karen Etheridge', ); 1; __END__