Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

perl::prereqscanner(3pm) [debian man page]

Perl::PrereqScanner(3pm)				User Contributed Perl Documentation				  Perl::PrereqScanner(3pm)

NAME
Perl::PrereqScanner - a tool to scan your Perl code for its prerequisites VERSION
version 1.012 SYNOPSIS
use 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 ); DESCRIPTION
The 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) ] }); METHODS
scan_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. AUTHORS
o Jerome Quelin o Ricardo Signes <rjbs@cpan.org> COPYRIGHT AND LICENSE
This 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)

Check Out this Related Man Page

Dist::Zilla::Prereqs(3pm)				User Contributed Perl Documentation				 Dist::Zilla::Prereqs(3pm)

NAME
Dist::Zilla::Prereqs - the prerequisites of a Dist::Zilla distribution VERSION
version 4.300020 DESCRIPTION
Dist::Zilla::Prereqs is a subcomponent of Dist::Zilla. The "prereqs" attribute on your Dist::Zilla object is a Dist::Zilla::Prereqs object, and is responsible for keeping track of the distribution's prerequisites. In fact, a Dist::Zilla::Prereqs object is just a thin layer over a CPAN::Meta::Prereqs object, stored in the "cpan_meta_prereqs" attribute. Almost everything this object does is proxied to the CPAN::Meta::Prereqs object, so you should really read how that works. Dist::Zilla::Prereqs proxies the following methods to the CPAN::Meta::Prereqs object: o finalize o is_finalized o requirements_for o as_string_hash METHODS
register_prereqs $prereqs->register_prereqs(%prereqs); $prereqs->register_prereqs(\%arg, %prereqs); This method adds new minimums to the prereqs object. If a hashref is the first arg, it may have entries for "phase" and "type" to indicate what kind of prereqs are being registered. (For more information on phase and type, see CPAN::Meta::Spec.) For example, you might say: $prereqs->register_prereqs( { phase => 'test', type => 'recommends' }, 'Test::Foo' => '1.23', 'XML::YZZY' => '2.01', ); If not given, phase and type default to runtime and requires, respectively. AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. 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-21 Dist::Zilla::Prereqs(3pm)
Man Page