]> git.vpit.fr Git - perl/modules/rgit.git/blob - lib/App/Rgit.pm
Move root and git checks from App::Rgit::new to App::Rgit::Config::new
[perl/modules/rgit.git] / lib / App / Rgit.pm
1 package App::Rgit;
2
3 use strict;
4 use warnings;
5
6 use Object::Tiny qw/config command/;
7
8 use App::Rgit::Command;
9 use App::Rgit::Config;
10 use App::Rgit::Utils qw/validate/;
11
12 =head1 NAME
13
14 App::Rgit - Backend that supports the rgit utility.
15
16 =head1 VERSION
17
18 Version 0.01
19
20 =cut
21
22 our $VERSION = '0.01';
23
24 =head1 DESCRIPTION
25
26 Backend that supports the L<rgit> utility.
27
28 This is an internal class to L<rgit>.
29
30 =head1 METHODS
31
32 =head2 C<< new root => $root, git => $git, cmd => $cmd, args => \@args >>
33
34 Creates a new L<App::Rgit> object that's bound to execute the command C<$cmd> on all the C<git> repositories inside C<$root> with C<@args> as arguments and C<$git> as C<git> executable.
35
36 =cut
37
38 sub new {
39  my ($class, %args) = &validate;
40  my $config = App::Rgit::Config->new(
41   root => $args{root},
42   git  => $args{git},
43  );
44  return unless defined $config;
45  $class->SUPER::new(
46   config  => $config,
47   command => App::Rgit::Command->new(
48    cmd   => $args{cmd},
49    args  => $args{args},
50    repos => $config->repos,
51   )
52  );
53 }
54
55 =head2 C<run>
56
57 Actually run the commands.
58
59 =cut
60
61 sub run {
62  my $self = shift;
63  $self->command->run($self->config);
64 }
65
66 =head2 C<config>
67
68 =head2 C<command>
69
70 Accessors.
71
72 =head1 SEE ALSO
73
74 L<rgit>.
75
76 =head1 AUTHOR
77
78 Vincent Pit, C<< <perl at profvince.com> >>, L<http://profvince.com>.
79    
80 You can contact me by mail or on C<irc.perl.org> (vincent).
81
82 =head1 BUGS
83
84 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.
85
86 =head1 SUPPORT
87
88 You can find documentation for this module with the perldoc command.
89
90     perldoc App::Rgit
91
92 =head1 COPYRIGHT & LICENSE
93
94 Copyright 2008 Vincent Pit, all rights reserved.
95
96 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
97
98 =cut
99
100 1; # End of App::Rgit