# LIBS
#
use Moose;
extends 'Frost::Burial';
# CLASS VARS
#
our $VERSION = 0.62;
our $AUTHORITY = 'cpan:ERNESTO';
# CLASS METHODS
#
sub suffix { '.cem' }
# PUBLIC ATTRIBUTES
#
# PRIVATE ATTRIBUTES
#
# CONSTRUCTORS
#
sub _build_numeric
{
my $type = find_type_constraint_manuel $_[0]->classname, 'id'; # id !!!
( ( defined $type ) and $type->is_a_type_of ( 'Num' ) ? true : false ); # return 'real' boolean
}
sub _build_unique { true; } # always
# DESTRUCTORS
#
# PUBLIC METHODS
#
# PRIVATE METHODS
#
# CALLBACKS
#
# IMMUTABLE
#
no Moose;
__PACKAGE__->meta->make_immutable ( debug => 0 );
1;
__END__
=head1 NAME
Frost::Cemetery - Welcome to Necropolis
=head1 ABSTRACT
No documentation yet...
=head1 DESCRIPTION
No user maintainable parts inside ;-)
=for comment CLASS VARS
=head1 CLASS METHODS
=head2 Frost::Cemetery->suffix()
Returns '.cem'
=for comment PUBLIC ATTRIBUTES
=for comment PRIVATE ATTRIBUTES
=head1 CONSTRUCTORS
=head2 Frost::Cemetery->new ( %params )
=head2 _build_numeric
=head2 _build_unique
=for comment DESTRUCTORS
=for comment PUBLIC METHODS
=for comment PRIVATE METHODS
=for comment CALLBACKS
=for comment IMMUTABLE
=head1 GETTING HELP
I'm reading the Moose mailing list frequently, so please ask your
questions there.
The mailing list is L<moose@perl.org>. You must be subscribed to send
a message. To subscribe, send an empty message to
L<moose-subscribe@perl.org>
=head1 BUGS
All complex software has bugs lurking in it, and this module is no
exception.
Please report any bugs to me or the mailing list.
=head1 AUTHOR
Ernesto L<ernesto@dienstleistung-kultur.de>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2010 by Dienstleistung Kultur Ltd. & Co. KG
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut