package App::Rgit::Config::Default; use strict; use warnings; use File::Find qw/find/; use base qw/App::Rgit::Config/; use App::Rgit::Repository; =head1 NAME App::Rgit::Config::Default - Default App::Rgit configuration class. =head1 VERSION Version 0.08 =cut our $VERSION = '0.08'; =head1 DESCRIPTION Default L configuration class. This is an internal class to L. =head1 METHODS This class inherits from L. It implements : =head2 C =cut sub repos { my $self = shift; return $self->{repos} if defined $self->{repos}; my %repos; find { wanted => sub { return if m{(?:^|/)\.\.?$} or not (-d $_ and -r _); if (my $r = App::Rgit::Repository->new(dir => $_)) { $File::Find::prune = 1; $repos{$r->repo} = $r unless exists $repos{$r->repo}; } }, follow => 1, no_chdir => 1, }, $self->root; $self->{repos} = [ sort { $a->repo cmp $b->repo } values %repos ]; } =head1 SEE ALSO L. L. =head1 AUTHOR Vincent Pit, C<< >>, L. You can contact me by mail or on C (vincent). =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc App::Rgit::Command::Default =head1 COPYRIGHT & LICENSE Copyright 2008,2009,2010 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1; # End of App::Rgit::Command::Default