package Fey::Role::Named; BEGIN { $Fey::Role::Named::VERSION = '0.40'; } use strict; use warnings; use namespace::autoclean; use Moose::Role; requires 'name'; 1; # ABSTRACT: A role for things with a name =pod =head1 NAME Fey::Role::Named - A role for things with a name =head1 VERSION version 0.40 =head1 SYNOPSIS use Moose; with 'Fey::Role::Named'; =head1 DESCRIPTION This role has no methods or attributes of its own, it simply requires that the consuming class provide a C method. =head1 BUGS See L for details on how to report bugs. =head1 AUTHOR Dave Rolsky =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2011 by Dave Rolsky. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut __END__