The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

App::Pod::Example - Base class for pod_example script.

SYNOPSIS

 use App::Pod::Example;
 my $app = App::Pod::Example->new;
 $app->run;

METHODS

new()
 Constructor.
run()
 Run method.
 Returns undef.

ERRORS

 new():
         Cannot process any action.
         From Class::Utils::set_params():
                 Unknown parameter '%s'.

EXAMPLE

 # Pragmas.
 use strict;
 use warnings;

 # Modules.
 use App::Pod::Example;

 # Arguments.
 @ARGV = (
         '-e',
         '-p',
         'App::Pod::Example',
 );

 # Run.
 App::Pod::Example->new->run;

 # Output:
 # -- this code with enumerated lines --

CAVEATS

Examples with die() cannot process, because returns bad results.

DEPENDENCIES

Class::Utils, English, Error::Pure, File::Temp, Getopt::Std, IO::Barf, Pod::Example, Readonly.

REPOSITORY

https://github.com/tupinek/App-Pod-Example

AUTHOR

Michal Špaček mailto:skim@cpan.org

http://skim.cz

LICENSE AND COPYRIGHT

 © 2011-2015 Michal Špaček
 BSD 2-Clause License

VERSION

0.15