NAME

Net::Google::Code - a simple client library for google code

VERSION

This document describes Net::Google::Code version 0.02

SYNOPSIS

use Net::Google::Code;

my $project = Net::Google::Code->new( project => 'net-google-code' );

print join(', ', @{ $project->owners } );

$project->issue;
$project->downloads;
$project->wiki;

DESCRIPTION

Net::Google::Code is a simple client library for projects hosted in Google Code.

Currently, it focuses on the basic read functionality for that is provided.

ATTRIBUTES

project

the project name

base_url

the project homepage

base_svn_url

the project svn url (without trunk)

summary

short Summary in 'Project Home'

description

HTML Description in 'Project Home'

labels

'Labels' in 'Project Home'

owners

ArrayRef. project owners

members

ArrayRef. project members

METHODS

issue

read Net::Google::Code::Issue for the API detail

downloads

read Net::Google::Code::Downloads for the API detail

wiki

read Net::Google::Code::Wiki for the API detail

DEPENDENCIES

Moose, HTML::TreeBuilder, WWW::Mechanize, Params::Validate

INCOMPATIBILITIES

None reported.

BUGS AND LIMITATIONS

No bugs have been reported.

This project is very very young, and api is not stable yet, so don't use this in production, at least for now.

AUTHOR

sunnavy <sunnavy@bestpractical.com>

Fayland Lam <fayland@gmail.com>

LICENCE AND COPYRIGHT

Copyright 2008-2009 Best Practical Solutions.

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