Acme-CPANAuthors-Booking
view release on metacpan or search on metacpan
+ Employee mutations
2014050701 Wed May 7 2014
+ Employee mutations
2014040501 Sat Apr 5 2014
+ Employee mutations
2014032801 Fri Mar 28 2014
+ Add several employees that were missing
+ Uncomment all authors without distributions on CPAN,
to make http://acme.cpanauthors.org/for/booking more accurate
+ The list is now managed by a program
2014031502 Sat Mar 15 2014
+ Adapt the Makefile.PL and META.yml to the new maintainer
2014031501 Sat Mar 15 2014
+ New maintainer: BOOK
+ New repository
+ Staff updates since June 2012
+ Reformatted Changes as per CPAN::Changes::Spec
{
"abstract" : "Booking.com CPAN authors",
"author" : [
"Philippe Bruhat (BooK) <book@cpan.org>"
],
"dynamic_config" : 1,
"generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005",
"keywords" : [],
"license" : [
"mit"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
---
abstract: 'Booking.com CPAN authors'
author:
- 'Philippe Bruhat (BooK) <book@cpan.org>'
build_requires:
Acme::CPANAuthors: '0'
ExtUtils::MakeMaker: '0'
Test::More: '0.88'
strict: '0'
warnings: '0'
configure_requires:
Acme::CPANAuthors: '0'
ExtUtils::MakeMaker: '0'
NAME
Acme::CPANAuthors::Booking - Booking.com CPAN authors
DESCRIPTION
This class provides a hash of Booking.com CPAN authors' PAUSE ID and
name to the Acme::CPANAuthors module.
BUGS
As soon as Booking.com hires a new CPAN author, this module is out of
date.
COMMERCIAL BREAK
Booking.com is hiring. Send your resume to work@booking.com if you are
interested. See also http://www.booking.com/jobs/
DEVELOPMENT
The current sources of this module are found on github:
http://github.com/book/Acme-CPANAuthors-Booking/
lib/Acme/CPANAuthors/Booking.pm view on Meta::CPAN
YKO => "\x{42f}\x{440}\x{43e}\x{441}\x{43b}\x{430}\x{432} \x{41a}\x{43e}\x{440}\x{448}\x{430}\x{43a} (Yaroslav Korshak)",
YVES => "Yves",
);
33684;
__END__
=head1 NAME
Acme::CPANAuthors::Booking - Booking.com CPAN authors
=head1 SYNOPSIS
use Acme::CPANAuthors;
my $authors = Acme::CPANAuthors -> new ("Booking");
my $number = $authors -> count;
my @ids = $authors -> id;
my @distros = $authors -> distributions ("BOOK");
my $url = $authors -> avatar_url ("BOOK");
my $kwalitee = $authors -> kwalitee ("BOOK");
my $name = $authors -> name ("BOOK");
See documentation for L<Acme::CPANAuthors> for more details.
=head1 DESCRIPTION
This class provides a hash of Booking.com CPAN authors' PAUSE ID and name to
the L<Acme::CPANAuthors> module.
=head1 BUGS
As soon as Booking.com hires a new CPAN author, this module is out of date.
=head1 COMMERCIAL BREAK
Booking.com is hiring. Send your resume to L<mailto:work@booking.com>
if you are interested. See also L<https://www.booking.com/jobs/>
=head1 DEVELOPMENT
The current sources of this module are found on github,
L<http://github.com/book/Acme-CPANAuthors-Booking/>.
t/000_basic.t view on Meta::CPAN
our $r = eval "require Test::NoWarnings; 1";
BEGIN {
use_ok ('Acme::CPANAuthors::Booking') or
BAIL_OUT ("Loading of 'Acme-CPANAuthors-Booking' failed");
}
ok defined $Acme::CPANAuthors::Booking::VERSION, "VERSION is set";
my $authors = Acme::CPANAuthors -> new ('Booking');
ok $authors, 'Got $authors';
ok $authors -> count, "There are authors";
my @ids = $authors -> id;
ok scalar @ids, "There are ids";
ok $authors -> name ("BOOK"), "Find a name";
Test::NoWarnings::had_no_warnings () if $r;
done_testing;
( run in 1.686 second using v1.01-cache-2.11-cpan-5c0b1e786e0 )