X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FUUIDMaker%2FUUID.pm;fp=lib%2FDBIx%2FClass%2FUUIDMaker%2FUUID.pm;h=7a647a9a51a80c9011beaf1fa2b4bfa62fd6734d;hb=e78f023a580925b0bc667642f9b19865c9f1fb39;hp=28a34b92b6afa9b546761b44e67f4634c19554f3;hpb=d5980fb62ef83a22fc9ef07b612c6ed84b8e2b1a;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/UUIDMaker/UUID.pm b/lib/DBIx/Class/UUIDMaker/UUID.pm index 28a34b9..7a647a9 100644 --- a/lib/DBIx/Class/UUIDMaker/UUID.pm +++ b/lib/DBIx/Class/UUIDMaker/UUID.pm @@ -11,3 +11,40 @@ sub as_string { }; 1; +__END__ + +=head1 NAME + +DBIx::Class::UUIDMaker::UUID - Create uuids using UUID + +=head1 SYNOPSIS + + package Artist; + __PACKAGE__->load_components(qw/UUIDColumns Core DB/); + __PACKAGE__->uuid_columns( 'artist_id' ); + __PACKAGE__->uuid_class('::UUID'); + +=head1 DESCRIPTION + +This DBIx::Class::UUIDMaker subclass uses UUID to generate uuid +strings in the following format: + + 098f2470-bae0-11cd-b579-08002b30bfeb + +=head1 METHODS + +=head2 as_string + +Returns the new uuid as a string. + +=head1 SEE ALSO + +L + +=head1 AUTHOR + +Chris Laco + +=head1 LICENSE + +You may distribute this code under the same terms as Perl itself.