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

NAME

Ukigumo::Client - Client library for Ukigumo

SYNOPSIS

use Ukigumo::Client;
use Ukigumo::Client::VC::Git;
use Ukigumo::Client::Executor::Auto;
use Ukigumo::Client::Notify::Debug;
use Ukigumo::Client::Notify::Ikachan;

my $app = Ukigumo::Client->new(
    vc   => Ukigumo::Client::VC::Git->new(
        branch     => $branch,
        repository => $repo,
    ),
    executor   => Ukigumo::Client::Executor::Perl->new(),
    server_url => $server_url,
    project    => $project,
);
$app->push_notifier(
    Ukigumo::Client::Notify::Ikachan->new(
        url     => $ikachan_url,
        channel => $ikachan_channel,
    )
);
$app->run();

DESCRIPTION

Ukigumo::Client is client library for Ukigumo.

ATTRIBUTES

METHODS

AUTHOR

Tokuhiro Matsuno

SEE ALSO

Ukigumo::Server, Ukigumo:https://github.com/ukigumo/

LICENSE

Copyright (C) Tokuhiro Matsuno

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