NAME
Catalyst::Model::MetaCPAN::Client - Catalyst Model for MetaCPAN
VERSION
Version 0.01
SYNOPSIS
package TestApp::Model::MetaCPAN;
use parent "Catalyst::Model::MetaCPAN::Client";
...
package TestApp::Controller::MetaCPAN;
use Moose;
use namespace::autoclean;
use JSON;
BEGIN {
extends 'Catalyst::Controller';
}
sub author :Chained('/') :PathPart('author') :Args(1) {
my ($self, $c, $arg) = @_;
my $author = $c->model('MetaCPAN')->author($arg);
$c->res->body(encode_json($author));
}
Beta.
SUBROUTINES/METHODS
new
client
request
resultset_to_array
author
author_releases
total_author_releases
cover
distribution
download_url
favorites
module
module_pod
module_source
package
permission
pod
ratings
release
release_changes
AUTHOR
LNATION, <email at lnation.org>
BUGS
Please report any bugs or feature requests to bug-catalyst-model-metacpan-client at rt.cpan.org
, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Model-MetaCPAN-Client. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Catalyst::Model::MetaCPAN::Client
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
https://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Model-MetaCPAN-Client
CPAN Ratings
https://cpanratings.perl.org/d/Catalyst-Model-MetaCPAN-Client
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
This software is Copyright (c) 2022 by LNATION.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)