DhMakePerl::Command::help - dh-make-perl help implementation


DhMakePerl documentation Contained in the DhMakePerl distribution.

Index


Code Index:

NAME

Top

DhMakePerl::Command::help - dh-make-perl help implementation

DESCRIPTION

Top

This module implements the help command of dh-make-perl(1).

METHODS

Top

execute

Provides help command implementation.

COPYRIGHT & LICENSE

Top


DhMakePerl documentation Contained in the DhMakePerl distribution.
package DhMakePerl::Command::help;

use strict; use warnings;

use base 'DhMakePerl';
use Pod::Usage;

sub execute {
    my $self = shift;

    # Help requested? Nice, we can just die! Isn't it helpful?
    die pod2usage( -message => "See `man 1 dh-make-perl' for details.\n" )
}

1;