| Git-Class documentation | Contained in the Git-Class distribution. |
Git::Class::Role::Cwd
Used internally.
Kenichi Ishigaki, <ishigaki@cpan.org>
Copyright (C) 2011 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Git-Class documentation | Contained in the Git-Class distribution. |
package Git::Class::Role::Cwd; use Any::Moose '::Role'; use Cwd (); has '_cwd' => ( is => 'ro', isa => 'Str|Undef', init_arg => 'cwd', default => sub { Cwd::cwd() }, ); 1; __END__