Basic doc for each module
[gitmo/MooseX-Role-Parameterized.git] / lib / MooseX / Role / Parameterized / Meta / Role / Parameterized.pm
index 44ff17b..5fa6706 100644 (file)
@@ -4,6 +4,8 @@ extends 'Moose::Meta::Role';
 
 # ABSTRACT: metaclass for parameterized roles
 
+use MooseX::Role::Parameterized::Parameters;
+
 has parameters => (
     is  => 'rw',
     isa => 'MooseX::Role::Parameterized::Parameters',
@@ -14,3 +16,13 @@ no Moose;
 
 1;
 
+__END__
+
+=head1 DESCRIPTION
+
+This is the metaclass for parameteriz-ed roles; that is, parameteriz-able roles
+with their parameters bound. All this actually provides is a place to store the
+L<parameters> object.
+
+=cut
+