31 lines
360 B
Perl
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;
|