NAME

Pithub::Gists::Comments

VERSION

version 0.01000

METHODS

create

  • Create a comment

    POST /gists/:gist_id/comments

Examples:

$result = $p->gists->comments->create(
    gist_id => 1,
    data    => { body => 'some comment' },
);

delete

  • Delete a comment

    DELETE /gists/comments/:id

Examples:

$result = $p->gists->comments->delete( comment_id => 1 );

get

  • Get a single comment

    GET /gists/comments/:id

Examples:

$result = $p->gists->comments->get( comment_id => 1 );

list

  • List comments on a gist

    GET /gists/:gist_id/comments

Examples:

$result = $p->gists->comments->list( gist_id => 1 );

update

  • Edit a comment

    PATCH /gists/comments/:id

Examples:

$result = $p->gists->comments->update(
    comment_id => 1,
    data       => { body => 'some comment' }
);