2018-07-03 17:39:05 +02:00
|
|
|
package App::Git::IssueManager;
|
2018-09-13 23:18:15 +02:00
|
|
|
#ABSTRACT: main MooseX class for git issue manager
|
2018-07-03 17:39:05 +02:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2018-07-04 10:45:42 +02:00
|
|
|
use Moose;
|
|
|
|
use MooseX::App qw(Color BashCompletion);
|
2018-07-03 17:39:05 +02:00
|
|
|
|
2018-07-04 10:45:42 +02:00
|
|
|
# the version of the module
|
|
|
|
our $VERSION = '0.1';
|
2018-07-03 17:39:05 +02:00
|
|
|
|
2018-07-04 10:45:42 +02:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
GIT IssueManager
|
|
|
|
|
|
|
|
Manages issues within your repository using a "issues" branch.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2018-07-09 21:17:47 +02:00
|
|
|
app_exclude 'App::Git::IssueManager::Config';
|
|
|
|
|
2018-07-04 10:45:42 +02:00
|
|
|
1;
|