Provided by: libpithub-perl_0.01033-1_all bug

NAME

       Pithub::PullRequests - Github v3 Pull Requests API

VERSION

       version 0.01033

METHODS

   comments
       Provides access to Pithub::PullRequests::Comments.

   commits
       ·   List commits on a pull request

               GET /repos/:user/:repo/pulls/:id/commits

           Examples:

               my $p = Pithub::PullRequests->new;
               my $result = $p->commits(
                   user            => 'plu',
                   repo            => 'Pithub',
                   pull_request_id => 1
               );

   create
       ·   Create a pull request

               POST /repos/:user/:repo/pulls

           Examples:

               my $p = Pithub::PullRequests->new;
               my $result = $p->create(
                   user   => 'plu',
                   repo => 'Pithub',
                   data   => {
                       base  => 'master',
                       body  => 'Please pull this in!',
                       head  => 'octocat:new-feature',
                       title => 'Amazing new feature',
                   }
               );

   files
       ·   List pull requests files

               GET /repos/:user/:repo/pulls/:id/files

           Examples:

               my $p = Pithub::PullRequests->new;
               my $result = $p->files(
                   user            => 'plu',
                   repo            => 'Pithub',
                   pull_request_id => 1,
               );

   get
       ·   Get a single pull request

               GET /repos/:user/:repo/pulls/:id

           Examples:

               my $p = Pithub::PullRequests->new;
               my $result = $p->get(
                   user            => 'plu',
                   repo            => 'Pithub',
                   pull_request_id => 1,
               );

   is_merged
       ·   Get if a pull request has been merged

               GET /repos/:user/:repo/pulls/:id/merge

           Examples:

               my $p = Pithub::PullRequests->new;
               my $result = $p->is_merged(
                   user            => 'plu',
                   repo            => 'Pithub',
                   pull_request_id => 1,
               );

   list
       ·   List pull requests

               GET /repos/:user/:repo/pulls

           Examples:

               my $p = Pithub::PullRequests->new;
               my $result = $p->list(
                   user => 'plu',
                   repo => 'Pithub'
               );

   merge
       ·   Merge a pull request

               PUT /repos/:user/:repo/pulls/:id/merge

           Examples:

               my $p = Pithub::PullRequests->new;
               my $result = $p->merge(
                   user            => 'plu',
                   repo            => 'Pithub',
                   pull_request_id => 1,
               );

   update
       ·   Update a pull request

               PATCH /repos/:user/:repo/pulls/:id

           Examples:

               my $p = Pithub::PullRequests->new;
               my $result = $p->update(
                   user            => 'plu',
                   repo            => 'Pithub',
                   pull_request_id => 1,
                   data            => {
                       base  => 'master',
                       body  => 'Please pull this in!',
                       head  => 'octocat:new-feature',
                       title => 'Amazing new feature',
                   }
               );

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.