update the Bool attribute helper to be a trait
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers / Bool.pm
CommitLineData
063fae5e 1package MooseX::AttributeHelpers::Bool;
2use Moose;
063fae5e 3
9e2db1c2 4our $VERSION = '0.17';
38430345 5$VERSION = eval $VERSION;
063fae5e 6our $AUTHORITY = 'cpan:STEVAN';
7
f4b22618 8extends 'Moose::Meta::Attribute';
9with 'MooseX::AttributeHelpers::Trait::Bool';
8ba92234 10
063fae5e 11no Moose;
12
13# register the alias ...
14package # hide me from search.cpan.org
15 Moose::Meta::Attribute::Custom::Bool;
16sub register_implementation { 'MooseX::AttributeHelpers::Bool' }
17
181;