WebService::ReviewBoard - Perl library to talk to a review board installation thru web services.
use WebService::ReviewBoard; # pass in the name of the reviewboard url to the constructor my $rb = WebService::ReviewBoard->new( 'http://demo.review-board.org/' ); $rb->login( 'username', 'password' );
This is an alpha release of WebService::ReviewBoard. The interface may change at any time and there are many parts of the API that are not implemented. You've been warned!
WebService::ReviewBoard
Patches welcome!
get_review_board_url
login
get_ua
Returns an LWP::UserAgent object. You can override this method in a subclass if you need to use a different LWP::UserAgent.
api_post
Do the HTTP POST to the reviewboard API.
api_get
Same as api_post, but do it with an HTTP GET
my $json = $rb->api_call( $path, $method, @options )
api_post and api_get use this internally
"Unknown method %s. Valid methods are GET or POST"
"you must pass WebService::ReviewBoard->new a username"
"you must pass WebService::ReviewBoard->new a password"
"No url path to api_post"
"Error fetching %s: %s"
"you must call %s as a method"
"get_review_board_url(): url you passed to new() ($url) looks invalid"
None.
version YAML::Syck Data::Dumper Bundle::LWP Log::Log4Perl
There are also a bunch of Test::* modules that you need if you want all the tests to pass:
Test::More Test::Pod Test::Exception Test::Pod::Coverage Test::Perl::Critic
None reported.
This source lives at http://github.com/jaybuff/perl_WebService_ReviewBoard/
No bugs have been reported.
Please report any bugs or feature requests to bug-webservice-reviewboard@rt.cpan.org, or through the web interface at http://rt.cpan.org.
bug-webservice-reviewboard@rt.cpan.org
Jay Buffington <jaybuffington@gmail.com>
<jaybuffington@gmail.com>
Copyright (c) 2008, Jay Buffington <jaybuffington@gmail.com>. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
To install WebService::ReviewBoard, copy and paste the appropriate command in to your terminal.
cpanm
cpanm WebService::ReviewBoard
CPAN shell
perl -MCPAN -e shell install WebService::ReviewBoard
For more information on module installation, please visit the detailed CPAN module installation guide.