From: Thomas Kratz Date: Thu, 18 May 2006 15:59:52 +0000 (+0000) Subject: Moved UUIDMaker.pm over from main DBIx::Class dist X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ab632513fcd9b63cc3851c86c653ff2758ad03a5;p=dbsrgits%2FDBIx-Class-Historic.git Moved UUIDMaker.pm over from main DBIx::Class dist --- diff --git a/lib/DBIx/Class/UUIDMaker.pm b/lib/DBIx/Class/UUIDMaker.pm deleted file mode 100644 index f492801..0000000 --- a/lib/DBIx/Class/UUIDMaker.pm +++ /dev/null @@ -1,59 +0,0 @@ -package DBIx::Class::UUIDMaker; - -use strict; -use warnings; - -sub new { - return bless {}, shift; -}; - -sub as_string { - return undef; -}; - -1; -__END__ - -=head1 NAME - -DBIx::Class::UUIDMaker - UUID wrapper module - -=head1 SYNOPSIS - - package CustomUUIDMaker; - use base qw/DBIx::Class::/; - - sub as_string { - my $uuid; - ...magic incantations... - return $uuid; - }; - -=head1 DESCRIPTION - -DBIx::Class::UUIDMaker is a base class used by the various uuid generation -subclasses. - -=head1 METHODS - -=head2 as_string - -Returns the new uuid as a string. - -=head1 SEE ALSO - -L, -L, -L, -L, -L, -L, -L - -=head1 AUTHOR - -Chris Laco - -=head1 LICENSE - -You may distribute this code under the same terms as Perl itself.