NAME

App::CPAN::Search - Base class for cpan-search script.

SYNOPSIS

use App::CPAN::Search;
my $app = App::CPAN::Search->new;
$app->run;

METHODS

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

ERRORS

new():
        From Class::Utils::set_params():
                Unknown parameter '%s'.

EXAMPLE

# Pragmas.
use strict;
use warnings;

# Modules.
use App::CPAN::Search;

# Arguments.
@ARGV = (
        'Library',
);

# Run.
App::CPAN::Search->new->run;

# Output like:
# Reading '/home/skim/.local/share/.cpan/Metadata'
#   Database was generated on Tue, 29 Dec 2015 21:53:32 GMT
# Module id = Library::CallNumber::LC
#     CPAN_USERID  DBWELLS (Dan Wells <CENSORED>)
#     CPAN_VERSION 0.23
#     CPAN_FILE    D/DB/DBWELLS/Library-CallNumber-LC-0.23.tar.gz
#     MANPAGE      Library::CallNumber::LC - Deal with Library-of-Congress call numbers
#     INST_FILE    /home/skim/perl5/lib/perl5/Library/CallNumber/LC.pm
#     INST_VERSION 0.23

DEPENDENCIES

CPAN, Class::Utils, Getopt::Std.

REPOSITORY

https://github.com/tupinek/App-CPAN-Search

AUTHOR

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

http://skim.cz

LICENSE AND COPYRIGHT

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

VERSION

0.01