]> git.vpit.fr Git - perl/modules/rgit.git/blob - lib/App/Rgit.pm
Allow user-defined policies. Enable interactive failure handling when Term::ReadKey...
[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.03
19
20 =cut
21
22 our $VERSION = '0.03';
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  my $command = App::Rgit::Command->new(
46   cmd    => $args{cmd},
47   args   => $args{args},
48   policy => $args{policy},
49  );
50  return unless defined $command;
51  $class->SUPER::new(
52   config  => $config,
53   command => $command,
54  );
55 }
56
57 =head2 C<run>
58
59 Actually run the commands.
60
61 =cut
62
63 sub run {
64  my $self = shift;
65  $self->command->run($self->config);
66 }
67
68 =head2 C<config>
69
70 =head2 C<command>
71
72 Accessors.
73
74 =head1 SEE ALSO
75
76 L<rgit>.
77
78 =head1 AUTHOR
79
80 Vincent Pit, C<< <perl at profvince.com> >>, L<http://profvince.com>.
81    
82 You can contact me by mail or on C<irc.perl.org> (vincent).
83
84 =head1 BUGS
85
86 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.
87
88 =head1 SUPPORT
89
90 You can find documentation for this module with the perldoc command.
91
92     perldoc App::Rgit
93
94 =head1 COPYRIGHT & LICENSE
95
96 Copyright 2008 Vincent Pit, all rights reserved.
97
98 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
99
100 =cut
101
102 1; # End of App::Rgit