]> git.vpit.fr Git - perl/modules/rgit.git/blobdiff - lib/App/Rgit/Policy.pm
Move policies to a new App::Rgit::Policy class layout
[perl/modules/rgit.git] / lib / App / Rgit / Policy.pm
diff --git a/lib/App/Rgit/Policy.pm b/lib/App/Rgit/Policy.pm
new file mode 100644 (file)
index 0000000..08307f3
--- /dev/null
@@ -0,0 +1,64 @@
+package App::Rgit::Policy;
+
+use strict;
+use warnings;
+
+=head1 NAME
+
+App::Rgit::Policy - Base class for App::Rgit policies.
+
+=head1 VERSION
+
+Version 0.06
+
+=cut
+
+our $VERSION = '0.06';
+
+sub new {
+ my $class = shift;
+ $class = ref $class || $class;
+
+ my %args = @_;
+
+ if ($class eq __PACKAGE__) {
+  my $policy = delete $args{name};
+  $policy = 'Default' unless defined $policy;
+  $policy = __PACKAGE__ . "::$policy" unless $policy =~ /::/;
+  eval "require $policy" or die $@;
+  return $policy->new(%args);
+ }
+
+ bless { }, $class;
+}
+
+=head1 SEE ALSO
+
+L<rgit>.
+
+=head1 AUTHOR
+
+Vincent Pit, C<< <perl at profvince.com> >>, L<http://profvince.com>.
+   
+You can contact me by mail or on C<irc.perl.org> (vincent).
+
+=head1 BUGS
+
+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.
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+    perldoc App::Rgit::Policy
+
+=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::Policy