1 package App::Rgit::Config;
8 use File::Spec::Functions qw/file_name_is_absolute/;
10 use Object::Tiny qw/root git cwd_repo debug/;
12 use App::Rgit::Repository;
13 use App::Rgit::Utils qw/validate :levels/;
17 App::Rgit::Config - Base class for App::Rgit configurations.
25 our $VERSION = '0.05';
29 Base class for L<App::Rgit> configurations.
31 This is an internal class to L<rgit>.
35 =head2 C<< new root => $root, git => $git >>
37 Creates a new configuration object based on the root directory C<$root> and using C<$git> as F<git> executable.
42 my ($class, %args) = &validate;
43 my $root = $args{root};
44 return unless defined $root and -d $root;
45 $root = abs_path $root unless file_name_is_absolute $root;
46 return unless defined $args{git} and -x $args{git};
47 my $conf = 'App::Rgit::Config::Default';
48 eval "require $conf; 1" or croak "Couldn't load $conf: $@";
49 my $r = App::Rgit::Repository->new(fake => 1);
50 return unless defined $r;
55 debug => defined $args{debug} ? int $args{debug} : WARN,
67 Notifies a message C<$msg> of the corresponding level.
74 if ($self->debug >= $level) {
81 sub info { shift->_notify(INFO, @_) }
83 sub warn { shift->_notify(WARN, @_) }
85 sub err { shift->_notify(ERR, @_) }
87 sub crit { shift->_notify(CRIT, @_) }
107 Vincent Pit, C<< <perl at profvince.com> >>, L<http://profvince.com>.
109 You can contact me by mail or on C<irc.perl.org> (vincent).
113 Please report any bugs or feature requests to C<bug-rgit at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=rgit>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
117 You can find documentation for this module with the perldoc command.
119 perldoc App::Rgit::Config
121 =head1 COPYRIGHT & LICENSE
123 Copyright 2008 Vincent Pit, all rights reserved.
125 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
129 1; # End of App::Rgit::Config