Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Git / PurePerl / Config.pm
CommitLineData
3fea05b9 1package Git::PurePerl::Config;
2use Moose;
3use MooseX::StrictConstructor;
4use Moose::Util::TypeConstraints;
5use namespace::autoclean;
6
7extends 'Config::GitLike';
8
9has '+confname' => ( default => "gitconfig" );
10has 'git' => ( is => 'ro', isa => 'Git::PurePerl', required => 1, weak_ref => 1 );
11
12override dir_file => sub {
13 my $self = shift;
14 return $self->git->gitdir->file("config");
15};
16
171;