add a NoGetopt metaclass
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / Meta / NoGetopt.pm
1
2 package MooseX::Getopt::Meta::NoGetopt;
3 use Moose;
4 use Moose::Util::TypeConstraints;
5
6 our $VERSION   = '0.01';
7 our $AUTHORITY = 'cpan:STEVAN';
8
9 extends 'Moose::Meta::Attribute'; # << Moose extending Moose :)
10
11 no Moose;
12
13 # register this as a metaclass alias ...
14 package Moose::Meta::Attribute::Custom::NoGetopt;
15 sub register_implementation { 'MooseX::Getopt::Meta::NoGetopt' }
16
17 1;