NAME

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

VERSION

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

SYNOPSIS

use Net::Google::Code::Connection;
my $connection = Net::Google::Code::Connection( project => 'foo' );

use Net::Google::Code::Issue;
my $ticket = Net::Google::Code::Issue->new( connection => $connection );
$ticket->load( 42 );

use Net::Google::Code::IssueSearch;
my $search = Net::Google::Code::IssueSearch->new( connection => $connection );
$search->search( _can => 'all', _q => 'foo bar' );
my @ids = $search->ids();

DESCRIPTION

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

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

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>

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.