summaryrefslogtreecommitdiff
path: root/lib/MooseX/Net/API/Meta/Class.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-06-03 10:01:01 +0200
committerfranck cuny <franck@lumberjaph.net>2010-06-03 10:01:01 +0200
commit3da11a8153d3b42af2f2a250008be6cc52e57b09 (patch)
tree4da02b541e9f8d35e5f20d63908cd33fe64dc7f8 /lib/MooseX/Net/API/Meta/Class.pm
parentreplace remainging with nothing (diff)
parentfix attribute declaration (diff)
downloadmoosex-net-api-3da11a8153d3b42af2f2a250008be6cc52e57b09.tar.gz
merge
Diffstat (limited to 'lib/MooseX/Net/API/Meta/Class.pm')
-rw-r--r--lib/MooseX/Net/API/Meta/Class.pm51
1 files changed, 31 insertions, 20 deletions
diff --git a/lib/MooseX/Net/API/Meta/Class.pm b/lib/MooseX/Net/API/Meta/Class.pm
index e4bed0c..9fdd793 100644
--- a/lib/MooseX/Net/API/Meta/Class.pm
+++ b/lib/MooseX/Net/API/Meta/Class.pm
@@ -1,25 +1,36 @@
package MooseX::Net::API::Meta::Class;
use Moose::Role;
-use Moose::Meta::Class;
-use MooseX::Types::Moose qw(Str ArrayRef ClassName Object);
-
-has local_api_methods => (
- traits => ['Array'],
- is => 'ro',
- isa => ArrayRef [Str],
- required => 1,
- default => sub { [] },
- auto_deref => 1,
- handles => { '_add_api_method' => 'push' },
-);
-
-sub _build_meta_class {
- my $self = shift;
- return Moose::Meta::Class->create_anon_class(
- superclasses => [ $self->method_metaclass ],
- cache => 1,
- );
-}
+
+with qw/
+ MooseX::Net::API::Meta::Method::APIMethod
+ MooseX::Net::API::Meta::Method::APIDeclare
+ /;
1;
+__END__
+
+=head1 NAME
+
+MooseX::Net::API::Meta::Class
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=head1 AUTHOR
+
+franck cuny E<lt>franck@lumberjaph.netE<gt>
+
+=head1 SEE ALSO
+
+=head1 LICENSE
+
+Copyright 2009, 2010 by Linkfluence
+
+http://linkfluence.net
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut