NAME

Pithub::Repos::Watching - Github v3 Repo Watching API

VERSION

version 0.01003

METHODS

is_watching

  • Check if you are watching a repo

    GET /user/watched/:user/:repo

    Examples:

    $result = $p->repos->watching->is_watching(
        repo => 'Pithub',
        user => 'plu',
    );

list_repos

  • List repos being watched by a user

    GET /users/:user/watched

    Examples:

    $result = $p->repos->watching->list_repos( user => 'plu' );
  • List repos being watched by the authenticated user

    GET /user/watched

    Examples:

    $result = $p->repos->watching->list_repos;

list

  • List watchers

    GET /repos/:user/:repo/watchers

    Examples:

    $result = $p->repos->watching->list(
        user => 'plu',
        repo => 'Pithub',
    );

start_watching

  • Watch a repo

    PUT /user/watched/:user/:repo

    Examples:

    $result = $p->repos->watching->start_watching(
        user => 'plu',
        repo => 'Pithub',
    );

stop_watching

  • Stop watching a repo

    DELETE /user/watched/:user/:repo

    Examples:

    $result = $p->repos->watching->stop_watching(
        user => 'plu',
        repo => 'Pithub',
    );

AUTHOR

Johannes Plunien <plu@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Johannes Plunien.

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