The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Lighthouse - Perl interface to lighthouseapp.com

VERSION

This document describes Net::Lighthouse version 0.06

SYNOPSIS

    use Net::Lighthouse;
    my $lh;
    $lh = Net::Lighthouse->new(
        account => 'foo',
        auth    => { token => 'bla' },
    );

    $lh = Net::Lighthouse->new(
        account => 'foo',
        auth    => { email => 'bar@example.com', password => 'password' },
    );

    my @projects = $lh->projects;
    my $project = $lh->project;
    my $token = $lh->token;
    my $user = $lh->user;

DESCRIPTION

Net::Lighthouse is a Perl interface to lighthouseapp.com, by means of its official api.

INTERFACE

projects

return a list of projects, each isa Net::Lighthouse::Project.

project, token, user

return a corresponding object, with account and auth prefilled if exist.

DEPENDENCIES

Any::Moose, Params::Validate, XML::TreePP, LWP, MIME::Base64, YAML::Syck, DateTime, URI::Escape

BUGS AND LIMITATIONS

No bugs have been reported.

SEE ALSO

Net::Lighthouse::Base, http://lighthouseapp.com/api

AUTHOR

sunnavy <sunnavy@bestpractical.com>

LICENCE AND COPYRIGHT

Copyright 2009-2010 Best Practical Solutions.

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