App-Git-IssueManager/lib/App/Git/IssueManager/Config.pm

31 lines
360 B
Perl

package App::Git::IssueManager::Config;
#ABSTRACT: Class for using gits configuration file for the IssueManager App
use Moose;
extends 'Config::GitLike';
use Config::GitLike;
sub dir_file
{
my $self = shift;
return "config";
}
sub global_file
{
my $self = shift;
return "";
}
sub user_file
{
my $self = shift;
return "~/.gitconfig";
}
1;