The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

LOGO

 ~                      __ ~
 ~     ____  ____  ____/ / ~
 ~    / __ \/ __ \/ __  /  ~
 ~   / /_/ / /_/ / /_/ /   ~
 ~  / .___/\____/\__,_/    ~
 ~ /_/                     ~

NAME

App::Pod - Quickly show available class methods and documentation.

SYNOPSIS

View summary of Mojo::UserAgent:

 % pod Mojo::UserAgent

View summary of a specific method.

 % pod Mojo::UserAgent get

Edit the module

 % pod Mojo::UserAgent -e

Edit the module and jump to the specific method definition right away. (Press "n" to next match if neeeded).

 % pod Mojo::UserAgent get -e

Run perldoc on the module (for convenience).

 % pod Mojo::UserAgent -d

List all available methods. If no methods are found normally, then this will automatically be enabled. (pod was made to work with Mojo pod styling).

 % pod Mojo::UserAgent -a

List all Module::Build actions.

 % pod Module::Build --query head1=ACTIONS/item-text

Can do the same stuff with a file

 % pod my.pod --query head1

Show help.

 % pod
 % pod -h

DESCRIPTION

Basically, this is a tool that can quickly summarize the contents of a perl module.

SUBROUTINES/METHODS

_has

Generates class accessor methods (like Mojo::Base::attr)

run

Run the main program.

   use App::Pod;
   App::Pod->run;

Or just use the included script:

    % pod

list_tool_options

Returns a list of the possible command line options to this tool.

list_class_options

Shows a list of all the available class options which may be methods, events, etc.

(This is handy for making tab completion based on a class.)

edit_class

Edit a class using vim. Can optionally just to a specific keyword.

doc_class

Show the documentation for a module using perldoc.

query_class

Run a pod query using Pod::Query.

Use --dump option to show the data structure. (For debugging use).

show_header

Prints a generic header for a module.

show_inheritance

Show the Inheritance chain of a class/module.

show_events

Show any declared class events.

show_methods

Show all class methods.

show_method_doc

Show documentation for a specific module method.

define_last_run_cache_file

Defined where to save the results from the last run. This is done for performance reasons.

store_cache

Saves the last class name and its methods/options.

retrieve_cache

Returns the last stored class cache and its options.

trim

Trim a line to fit the terminal width. Handles also escape codes within the line.

ENVIRONMENT

Install bash completion support.

 % apt install bash-completion

Install tab completion.

 % source bash_completion_pod

SEE ALSO

Pod::Query

Pod::LOL

Module::Functions

AUTHOR

Tim Potapov, <tim.potapov[AT]gmail.com>

BUGS

Please report any bugs or feature requests to https://github.com/poti1/app-pod/issues.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc App::Pod

You can also look for information at:

https://metacpan.org/pod/App::Pod https://github.com/poti1/app-pod

ACKNOWLEDGEMENTS

TBD

LICENSE AND COPYRIGHT

This software is Copyright (c) 2022 by Tim Potapov.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)