The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MooseX::RemoteHelper::Meta::Trait::Role;
use strict;
use warnings;
use namespace::autoclean;

our $VERSION = '0.001011'; # VERSION

use Moose::Role;

sub composition_class_roles {
	return 'MooseX::RemoteHelper::Meta::Trait::Role::Composite'
}

1;

# ABSTRACT: meta role


__END__
=pod

=head1 NAME

MooseX::RemoteHelper::Meta::Trait::Role - meta role

=head1 VERSION

version 0.001011

=head1 METHODS

=head2 composition_class_roles

See L<Moose::Meta::Role/Construction>

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website
https://github.com/xenoterracide/MooseX-RemoteHelper/issues

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 SEE ALSO

Please see those modules/websites for more information related to this module.

=over 4

=item *

L<MooseX::RemoteHelper|MooseX::RemoteHelper>

=back

=head1 AUTHOR

Caleb Cushing <xenoterracide@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2012 by Caleb Cushing.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)

=cut