App-BambooCli

 view release on metacpan or  search on metacpan

lib/App/BambooCli/Command.pm  view on Meta::CPAN

package App::BambooCli::Command;

# Created on: 2019-06-03 12:44:38
# Create by:  Ivan Wills
# $Id$
# $Revision$, $HeadURL$, $Date$
# $Revision$, $Source$, $Date$

use Moo;
use warnings;
use version;
use Carp;
use Scalar::Util;
use List::Util;
#use List::MoreUtils;
use Getopt::Alt;
use Data::Dumper qw/Dumper/;
use English qw/ -no_match_vars /;

our $VERSION = version->new('0.0.1');

has [qw/ defaults options /] => (
    is => 'rw',
);

has bamboo => (
    is       => 'rw',
    required => 1,
    handles  => [qw/ config /],
);

sub get_sub_options {
    my ($self) = @_;
    my $module = ref $self;
    my $options = eval "\$${module}::OPTIONS"; ## no critic

    my $opt = get_options(@$options);
    $self->defaults({ %{ $self->defaults }, %{ $opt } });

    return $self;
}

sub auto_complete {
    my ($self) = @_;

    warn lc ( ref $self =~ /.*::/ ), " has no --auto-complete support\n";
    return;
}

1;

__END__

=head1 NAME

App::BambooCli::Command - The base module for individual subcommands

=head1 VERSION

This documentation refers to App::BambooCli::Command version 0.0.1

=head1 SYNOPSIS

   use App::BambooCli::Command;

   # Brief but working code example(s) here showing the most common usage(s)
   # This section will be as far as many users bother reading, so make it as
   # educational and exemplary as possible.


=head1 DESCRIPTION

=head1 SUBROUTINES/METHODS

=head2 C<defaults>

=head2 C<options>



( run in 0.804 second using v1.01-cache-2.11-cpan-d7f47b0818f )