NAME

Net::GitHub::V1::Project::Downloads - GitHub Project Downloads Section (V1)

SYNOPSIS

use Net::GitHub::V1::Project::Downloads;

my $dl = Net::GitHub::V1::Project::Downloads->new(
    owner => 'fayland', name => 'perl-net-github'
);

my @downloads = $dl->downloads;

DESCRIPTION

METHODS

downloads
foreach my $download ( @downloads ) {
    print $download->{filename}, $download->{url},
          $download->{description},
          $download->{date}, $download->{size}, "\n";
}

AUTHOR

Fayland Lam, <fayland at gmail.com>

COPYRIGHT & LICENSE

Copyright 2009 Fayland Lam, all rights reserved.

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