| JiftyX-Fixtures documentation | Contained in the JiftyX-Fixtures distribution. |
JiftyX::Fixtures::Script::Help - help subcommands
version 0.07
shelling <shelling@cpan.org>
This software is Copyright (c) 2009 by <shelling@cpan.org>.
This is free software, licensed under:
The MIT (X11) License
| JiftyX-Fixtures documentation | Contained in the JiftyX-Fixtures distribution. |
package JiftyX::Fixtures::Script::Help; our $VERSION = '0.07'; # ABSTRACT: help subcommands use warnings; use strict; use base qw( App::CLI::Command::Help ); sub run { my $self = shift; if ($self->{config}->{fixtures}) { $self->SUPER(@_); } else { print $self->{config}->{app_root} . " is not existed. Please run `jiftyx-fixtures init`\n"; } } 1; __END__