Query: perl::prereqscanner
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Perl::PrereqScanner(3pm) User Contributed Perl Documentation Perl::PrereqScanner(3pm)NAMEPerl::PrereqScanner - a tool to scan your Perl code for its prerequisitesVERSIONversion 1.012SYNOPSISuse Perl::PrereqScanner; my $scanner = Perl::PrereqScanner->new; my $prereqs = $scanner->scan_ppi_document( $ppi_doc ); my $prereqs = $scanner->scan_file( $file_path ); my $prereqs = $scanner->scan_string( $perl_code );DESCRIPTIONThe scanner will extract loosely your distribution prerequisites from your files. The extraction may not be perfect but tries to do its best. It will currently find the following prereqs: o plain lines beginning with "use" or "require" in your perl modules and scripts, including minimum perl version o regular inheritance declared with the "base" and "parent" pragmata o Moose inheritance declared with the "extends" keyword o Moose roles included with the "with" keyword o OO namespace aliasing using the "aliased" module Scanner Plugins Perl::PrereqScanner works by running a series of scanners over a PPI::Document representing the code to scan. By default the "Perl5", "Moose", "TestMore", "POE", and "Aliased" scanners are run. You can supply your own scanners when constructing your PrereqScanner: # Us only the Perl5 scanner: my $scanner = Perl::PrereqScanner->new({ scanners => [ qw(Perl5) ] }); # Use any stock scanners, plus Example: my $scanner = Perl::PrereqScanner->new({ extra_scanners => [ qw(Example) ] });METHODSscan_string my $prereqs = $scanner->scan_string( $perl_code ); Given a string containing Perl source code, this method returns a CPAN::Meta::Requirements object describing the modules it requires. This method will throw an exception if PPI fails to parse the code. scan_file my $prereqs = $scanner->scan_file( $path ); Given a file path to a Perl document, this method returns a CPAN::Meta::Requirements object describing the modules it requires. This method will throw an exception if PPI fails to parse the code. scan_ppi_document my $prereqs = $scanner->scan_ppi_document( $ppi_doc ); Given a PPI::Document, this method returns a CPAN::Meta::Requirements object describing the modules it requires.AUTHORSo Jerome Quelin o Ricardo Signes <rjbs@cpan.org>COPYRIGHT AND LICENSEThis software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-27 Perl::PrereqScanner(3pm)
Related Man Pages |
---|
cpan::meta::prereqs5.18(3) - mojave |
cpan::meta::prereqs(3) - osx |
cpan::meta::feature(3) - centos |
dist::zilla::prereqs(3pm) - debian |
perl::prereqscanner(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
Need some help with shell content scanner |
GenBank Perl help... |
Switching over to C++ |
Perl code request |
Client/intruder scanner for lan |