use Cwd qw/abs_path/;
use File::Spec::Functions qw/file_name_is_absolute/;
-use Object::Tiny qw/root root_repo git/;
+use Object::Tiny qw/root git cwd_repo/;
use App::Rgit::Repository;
use App::Rgit::Utils qw/validate/;
return unless defined $args{git} and -x $args{git};
my $conf = 'App::Rgit::Config::Default';
eval "require $conf; 1" or croak "Couldn't load $conf: $@";
- my $r = App::Rgit::Repository->new(dir => $root, fake => 1);
+ my $r = App::Rgit::Repository->new(fake => 1);
return unless defined $r;
$conf->SUPER::new(
- root => $root,
- root_repo => $r,
- git => $args{git},
+ root => $root,
+ git => $args{git},
+ cwd_repo => $r,
);
}
=head2 C<root>
-=head2 C<root_repo>
-
=head2 C<git>
=head2 C<repos>
+=head2 C<cwd_repo>
+
Accessors.
=head1 SEE ALSO