JiftyX::Fixtures::Script::Help - help subcommands


JiftyX-Fixtures documentation Contained in the JiftyX-Fixtures distribution.

Index


Code Index:

NAME

Top

JiftyX::Fixtures::Script::Help - help subcommands

VERSION

Top

version 0.07

AUTHOR

Top

  shelling <shelling@cpan.org>

COPYRIGHT AND LICENSE

Top


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__