Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

module::cpants::analyse(3pm) [debian man page]

Module::CPANTS::Analyse(3pm)				User Contributed Perl Documentation			      Module::CPANTS::Analyse(3pm)

NAME
Module::CPANTS::Analyse - Generate Kwalitee ratings for a distribution SYNOPSIS
use Module::CPANTS::Analyse; my $analyser=Module::CPANTS::Analyse->new({ dist=>'path/to/Foo-Bar-1.42.tgz', }); $analyser->unpack; $analyser->analyse; $analyser->calc_kwalitee; # results are in $analyser->d; DESCRIPTION
Methods new my $analyser=Module::CPANTS::Analyse->new({dist=>'path/to/file'}); Plain old constructor. unpack Unpack the distribution into a temporary directory. Returns an error if something went wrong, "undef" if all went well. analyse Run all analysers (defined in "Module::CPANTS::Kwalitee::*" on the dist. calc_kwalitee Check if the dist conforms to the Kwalitee indicators. Helper Methods testdir Returns the path to the unique temp directory. testfile Returns the location of the unextracted tarball. tarball Returns the filename of the tarball. read_meta_yml Reads the META.yml file and returns its content. WEBSITE
<http://cpants.perl.org/> BUGS
Please report any bugs or feature requests, or send any patches, to bug-module-cpants-analyse at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module-CPANTS-Analyse <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module-CPANTS- Analyse>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. AUTHOR
Thomas Klausner <https://metacpan.org/author/domm> Please use the "perl-qa" mailing list for discussing all things CPANTS: http://lists.perl.org/list/perl-qa.html <http://lists.perl.org/list/perl-qa.html> Based on work by Leon Brocard <https://metacpan.org/author/lbrocard> and the original idea proposed by Michael G. Schwern <https://metacpan.org/author/schwern>. LICENSE
This code is Copyright X 2003X2006 Thomas Klausner <https://metacpan.org/author/domm>. All rights reserved. You may use and distribute this module according to the same terms that Perl is distributed under. perl v5.14.2 2012-06-08 Module::CPANTS::Analyse(3pm)

Check Out this Related Man Page

Module::Install::AutoManifest(3pm)			User Contributed Perl Documentation			Module::Install::AutoManifest(3pm)

NAME
Module::Install::AutoManifest - generate MANIFEST automatically VERSION
Version 0.003 SYNOPSIS
In Makefile.PL: auto_manifest; In MANIFEST.SKIP: # put your list of patterns here ^.git/ ^your-crazy-files-whatever$ In MANIFEST: Nothing, remove it METHODS
auto_manifest This extension to Module::Install adds behavior for automatically generating MANIFEST. Before "make distdir", "make manifest" will be run for you automatically. Likewise, "make distclean" will remove your automatically- generated MANIFEST. AUTHOR
Hans Dieter Pearcey, "<hdp at cpan.org>" BUGS
Please report any bugs or feature requests to "bug-module-install-automanifest at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module-Install-AutoManifest <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module-Install- AutoManifest>. 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 Module::Install::AutoManifest You can also look for information at: o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Install-AutoManifest <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Install- AutoManifest> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Module-Install-AutoManifest <http://annocpan.org/dist/Module-Install-AutoManifest> o CPAN Ratings http://cpanratings.perl.org/d/Module-Install-AutoManifest <http://cpanratings.perl.org/d/Module-Install-AutoManifest> o Search CPAN http://search.cpan.org/dist/Module-Install-AutoManifest <http://search.cpan.org/dist/Module-Install-AutoManifest> SEE ALSO
Module::Install COPYRIGHT &; LICENSE Copyright 2008 Hans Dieter Pearcey, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2008-05-18 Module::Install::AutoManifest(3pm)
Man Page