Fey::Role::Named - A role for things with a name


Fey documentation Contained in the Fey distribution.

Index


Code Index:

NAME

Top

Fey::Role::Named - A role for things with a name

VERSION

Top

version 0.40

SYNOPSIS

Top

  use Moose;

  with 'Fey::Role::Named';

DESCRIPTION

Top

This role has no methods or attributes of its own, it simply requires that the consuming class provide a name() method.

BUGS

Top

See Fey for details on how to report bugs.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Fey documentation Contained in the Fey distribution.

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




__END__