NAME
WebService::Gitter - An interface to Gitter REST API via Perl 5.
VERSION
version 0.0.1
SYNOPSIS
use WebService::Gitter;
my $serv = WebService::Gitter->new(token_pass => 'mytoken123');
# Prints the info about the authenticated user
$serv->get_user_who;
# Prints the info about Gitter room ('Room name')
$serv->get_room_ID('FreeCodeCamp/FreeCodeCamp');
DESCRIPTION
An interface to Gitter REST API (v1). Currently only supports two method (see SYNOPSIS)
AUTHOR
faraco <skelic3@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by faraco.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.