Group
Extension

Matches 3

Osgood-Client ( G/GP/GPHAT/Osgood-Client-2.0.7.tar.gz, GPHAT, 2010; MetaCPAN )
Osgood-Client/lib/Osgood/EventList.pm ( view source; MetaCPAN )
e MooseX::AttributeHelpers;
use MooseX::Iterator;
use MooseX::Storage;

with Storage('format' => 'JSON', 'io' => 'File');

has 'events' => (
    metaclass => 'Collection::Array',
    is => 'rw',
    i
Osgood-Client ( G/GP/GPHAT/Osgood-Client-2.0.7.tar.gz, GPHAT, 2010; MetaCPAN )
Osgood-Client/lib/Osgood/Event.pm ( view source; MetaCPAN )
ooseX::AttributeHelpers;

use DateTime;
use DateTime::Format::ISO8601;

with Storage('format' => 'JSON', 'io' => 'File');

has 'id' => ( is => 'rw', isa => 'Int'  );
has 'action' => ( is => 'rw', isa 
Osgood-Client ( G/GP/GPHAT/Osgood-Client-2.0.7.tar.gz, GPHAT, 2010; MetaCPAN )
Osgood-Client/lib/Osgood/Client.pm ( view source; MetaCPAN )
package Osgood::Client;
use Moose;

use HTTP::Request;
use JSON::XS;
use LWP::UserAgent;
use Moose::Util::TypeConstraints;
use Osgood::EventList;
use Osgood::Event;
use URI;

subtype 'Osgood.Client.UR
 $req->content_type('application/json');
    $req->content($self->list->freeze);

    my $res = $ua->request($req);

    if($res->is_success) {
        my $data = JSON::XS->new->decode($res->content);
       if(!defined($data) || !(ref($data) eq 'HASH')) {
            $self->error('Unable to parse JSON response');
            return 0;
        }
        my $count = $data->{count};
        if($data-

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.