Add a bunch of missing POD while the gears spin.

This commit is contained in:
Colin Kuskie 2012-01-18 13:39:16 -08:00
parent 475b73f6e6
commit 7406c02a78
5 changed files with 41 additions and 1 deletions

View file

@ -14,6 +14,12 @@ use WebGUI::Command -command;
use strict;
use warnings;
=head2 opt_spec
Return a set of options to WebGUI::Command so that it knows how to process command line options.
=cut
sub opt_spec {
return (
[ 'configFile=s', 'The WebGUI config file to use. This parameter is required.'],
@ -26,6 +32,12 @@ sub opt_spec {
);
}
=head2 validate_args
Check for mandatory command line options
=cut
sub validate_args {
my ($self, $opt, $args) = @_;
if (! $opt->{configfile}) {