[perl-www-contact commit] r45 - in trunk: . lib/WWW lib/WWW/Contact lib/WWW/Contact/CN

0 views
Skip to first unread message

codesite...@google.com

unread,
Oct 30, 2008, 10:04:14 AM10/30/08
to perl-www...@googlegroups.com
Author: sachinjsk
Date: Thu Oct 30 07:03:05 2008
New Revision: 45

Modified:
trunk/MANIFEST
trunk/META.yml
trunk/lib/WWW/Contact.pm
trunk/lib/WWW/Contact/AOL.pm
trunk/lib/WWW/Contact/Base.pm
trunk/lib/WWW/Contact/CN/163.pm
trunk/lib/WWW/Contact/Gmail.pm
trunk/lib/WWW/Contact/Hotmail.pm
trunk/lib/WWW/Contact/Indiatimes.pm
trunk/lib/WWW/Contact/Lycos.pm
trunk/lib/WWW/Contact/Mail.pm
trunk/lib/WWW/Contact/Rediffmail.pm
trunk/lib/WWW/Contact/Yahoo.pm

Log:
preparing for release version 0.15

Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST (original)
+++ trunk/MANIFEST Thu Oct 30 07:03:05 2008
@@ -8,7 +8,9 @@
lib/WWW/Contact/Gmail.pm
lib/WWW/Contact/Hotmail.pm
lib/WWW/Contact/Indiatimes.pm
+lib/WWW/Contact/Lycos.pm
lib/WWW/Contact/Mail.pm
+lib/WWW/Contact/Plaxo.pm
lib/WWW/Contact/Rediffmail.pm
lib/WWW/Contact/Yahoo.pm
Makefile.PL
@@ -26,6 +28,8 @@
t/106-mail.t
t/107-hotmail.t
t/108-indiatimes.t
+t/109-lycos.t
+t/110-plaxo.t
t/999-author.t
t/lib/WWW/Contact/Unknown.pm
t/pod.t

Modified: trunk/META.yml
==============================================================================
--- trunk/META.yml (original)
+++ trunk/META.yml Thu Oct 30 07:03:05 2008
@@ -1,6 +1,6 @@
---
name: WWW-Contact
-version: 0.13
+version: 0.15
author:
- 'Fayland Lam <fay...@gmail.com>'
abstract: Get contacts/addressbook from Web
@@ -17,34 +17,40 @@
provides:
WWW::Contact:
file: lib/WWW/Contact.pm
- version: 0.13
+ version: 0.15
WWW::Contact::AOL:
file: lib/WWW/Contact/AOL.pm
- version: 0.13
+ version: 0.15
WWW::Contact::Base:
file: lib/WWW/Contact/Base.pm
- version: 0.13
+ version: 0.15
WWW::Contact::CN::163:
file: lib/WWW/Contact/CN/163.pm
- version: 0.13
+ version: 0.15
WWW::Contact::Gmail:
file: lib/WWW/Contact/Gmail.pm
- version: 0.13
+ version: 0.15
WWW::Contact::Hotmail:
file: lib/WWW/Contact/Hotmail.pm
- version: 0.13
+ version: 0.15
WWW::Contact::Indiatimes:
file: lib/WWW/Contact/Indiatimes.pm
- version: 0.01
+ version: 0.15
+ WWW::Contact::Lycos:
+ file: lib/WWW/Contact/Lycos.pm
+ version: 0.15
WWW::Contact::Mail:
file: lib/WWW/Contact/Mail.pm
- version: 0.13
+ version: 0.15
+ WWW::Contact::Plaxo:
+ file: lib/WWW/Contact/Plaxo.pm
+ version: 0.01
WWW::Contact::Rediffmail:
file: lib/WWW/Contact/Rediffmail.pm
- version: 0.13
+ version: 0.15
WWW::Contact::Yahoo:
file: lib/WWW/Contact/Yahoo.pm
- version: 0.13
+ version: 0.15
generated_by: Module::Build version 0.2808
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html

Modified: trunk/lib/WWW/Contact.pm
==============================================================================
--- trunk/lib/WWW/Contact.pm (original)
+++ trunk/lib/WWW/Contact.pm Thu Oct 30 07:03:05 2008
@@ -4,7 +4,7 @@
use Moose;
use Moose::Util::TypeConstraints;

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:FAYLAND';

has 'errstr' => ( is => 'rw', isa => 'Maybe[Str]' );

Modified: trunk/lib/WWW/Contact/AOL.pm
==============================================================================
--- trunk/lib/WWW/Contact/AOL.pm (original)
+++ trunk/lib/WWW/Contact/AOL.pm Thu Oct 30 07:03:05 2008
@@ -3,7 +3,7 @@
use Moose;
extends 'WWW::Contact::Base';

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:FAYLAND';

sub get_contacts {

Modified: trunk/lib/WWW/Contact/Base.pm
==============================================================================
--- trunk/lib/WWW/Contact/Base.pm (original)
+++ trunk/lib/WWW/Contact/Base.pm Thu Oct 30 07:03:05 2008
@@ -5,7 +5,7 @@
use Carp qw/croak/;
use Data::Dumper;

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:FAYLAND';

my $sub_verbose = sub {

Modified: trunk/lib/WWW/Contact/CN/163.pm
==============================================================================
--- trunk/lib/WWW/Contact/CN/163.pm (original)
+++ trunk/lib/WWW/Contact/CN/163.pm Thu Oct 30 07:03:05 2008
@@ -3,7 +3,7 @@
use Moose;
extends 'WWW::Contact::Base';

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:FAYLAND';

sub get_contacts {

Modified: trunk/lib/WWW/Contact/Gmail.pm
==============================================================================
--- trunk/lib/WWW/Contact/Gmail.pm (original)
+++ trunk/lib/WWW/Contact/Gmail.pm Thu Oct 30 07:03:05 2008
@@ -3,7 +3,7 @@
use Moose;
extends 'WWW::Contact::Base';

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:FAYLAND';

use HTML::TokeParser::Simple;

Modified: trunk/lib/WWW/Contact/Hotmail.pm
==============================================================================
--- trunk/lib/WWW/Contact/Hotmail.pm (original)
+++ trunk/lib/WWW/Contact/Hotmail.pm Thu Oct 30 07:03:05 2008
@@ -6,7 +6,7 @@
use HTTP::Request::Common qw/POST/;
use HTML::TokeParser::Simple;

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:FAYLAND';

sub get_contacts {

Modified: trunk/lib/WWW/Contact/Indiatimes.pm
==============================================================================
--- trunk/lib/WWW/Contact/Indiatimes.pm (original)
+++ trunk/lib/WWW/Contact/Indiatimes.pm Thu Oct 30 07:03:05 2008
@@ -3,7 +3,7 @@
use Moose;
extends 'WWW::Contact::Base';

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:SACHINJSK';

sub get_contacts {

Modified: trunk/lib/WWW/Contact/Lycos.pm
==============================================================================
--- trunk/lib/WWW/Contact/Lycos.pm (original)
+++ trunk/lib/WWW/Contact/Lycos.pm Thu Oct 30 07:03:05 2008
@@ -3,7 +3,7 @@
use Moose;
extends 'WWW::Contact::Base';

-our $VERSION = '0.01';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:SACHINJSK';

sub get_contacts {

Modified: trunk/lib/WWW/Contact/Mail.pm
==============================================================================
--- trunk/lib/WWW/Contact/Mail.pm (original)
+++ trunk/lib/WWW/Contact/Mail.pm Thu Oct 30 07:03:05 2008
@@ -3,7 +3,7 @@
use Moose;
extends 'WWW::Contact::Base';

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:SACHINJSK';

sub get_contacts {

Modified: trunk/lib/WWW/Contact/Rediffmail.pm
==============================================================================
--- trunk/lib/WWW/Contact/Rediffmail.pm (original)
+++ trunk/lib/WWW/Contact/Rediffmail.pm Thu Oct 30 07:03:05 2008
@@ -3,7 +3,7 @@
use Moose;
extends 'WWW::Contact::Base';

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:SACHINJSK';

sub get_contacts {

Modified: trunk/lib/WWW/Contact/Yahoo.pm
==============================================================================
--- trunk/lib/WWW/Contact/Yahoo.pm (original)
+++ trunk/lib/WWW/Contact/Yahoo.pm Thu Oct 30 07:03:05 2008
@@ -3,7 +3,7 @@
use Moose;
extends 'WWW::Contact::Base';

-our $VERSION = '0.14';
+our $VERSION = '0.15';
our $AUTHORITY = 'cpan:FAYLAND';

has '+ua_class' => ( default => 'WWW::Mechanize::GZip' );

Reply all
Reply to author
Forward
0 new messages