VERSION
version 0.01033METHODS
branch
Get information about a single branch.
    GET /repos/:owner/:repo/branches/:branch
Example:
    my $result = Pithub->new->branch(
        user => 'plu',
        repo => 'Pithub',
        branch => "master"
    );
See also branches to get a list of all branches.
branches
- 
List Branches
GET /repos/:user/:repo/branchesExamples: my $repos = Pithub::Repos->new; my $result = $repos->branches( user => 'plu', repo => 'Pithub' );See also branch to get information about a single branch. 
collaborators
Provides access to Pithub::Repos::Collaborators.commits
Provides access to Pithub::Repos::Commits.contents
Provides access to Pithub::Repos::Contents.contributors
- 
List contributors
GET /repos/:user/:repo/contributorsExamples: my $repos = Pithub::Repos->new; my $result = $repos->contributors( user => 'plu', repo => 'Pithub' );
create
- 
Create a new repository for the authenticated user.
POST /user/reposExamples: my $repos = Pithub::Repos->new; my $result = $repos->create( data => { name => 'some-repo' } );
- 
Create a new repository in this organization. The authenticated user
must be a member of this organization.
POST /orgs/:org/reposExamples: my $repos = Pithub::Repos->new; my $result = $repos->create( org => 'CPAN-API', data => { name => 'some-repo' } );
delete
Delete a repository.
    DELETE /repos/:owner/:repo
downloads
Provides access to Pithub::Repos::Downloads.forks
Provides access to Pithub::Repos::Forks.get
- 
Get a repo
GET /repos/:user/:repoExamples: my $repos = Pithub::Repos->new; my $result = $repos->get( user => 'plu', repo => 'Pithub' );
hooks
Provides access to Pithub::Repos::Hooks.keys
Provides access to Pithub::Repos::Keys.languages
- 
List languages
GET /repos/:user/:repo/languagesExamples: my $repos = Pithub::Repos->new; my $result = $repos->languages( user => 'plu', repo => 'Pithub' );
list
- 
List repositories for the authenticated user.
GET /user/reposExamples: my $repos = Pithub::Repos->new; my $result = $repos->list;
- 
List public repositories for the specified user.
GET /users/:user/reposExamples: my $repos = Pithub::Repos->new; my $result = $repos->list( user => 'plu' );
- 
List repositories for the specified org.
GET /orgs/:org/reposExamples: my $repos = Pithub::Repos->new; my $result = $repos->list( org => 'CPAN-API' );
releases
Provides access to Pithub::Repos::Releases.starring
Provides access to Pithub::Repos::Starring.stats
Provide access to Pithub::Repos::Stats.statuses
Provide access to Pithub::Repos::Statuses.tags
- 
List Tags
GET /repos/:user/:repo/tagsExamples: my $repos = Pithub::Repos->new; my $result = $repos->tags( user => 'plu', repo => 'Pithub' );
teams
- 
List Teams
GET /repos/:user/:repo/teamsExamples: my $repos = Pithub::Repos->new; my $result = $repos->teams( user => 'plu', repo => 'Pithub' );
update
- 
Edit
PATCH /repos/:user/:repoExamples: # update a repo for the authenticated user my $repos = Pithub::Repos->new; my $result = $repos->update( repo => 'Pithub', data => { description => 'Github API v3' }, );
watching
Provides access to Pithub::Repos::Watching.AUTHOR
Johannes Plunien <[email protected]>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.

