0.002 added the constructor functionality and removed auto_install
[gitmo/MooseX-Emulate-Class-Accessor-Fast.git] / lib / MooseX / Adopt / Class / Accessor / Fast.pm
CommitLineData
c5a105b3 1package MooseX::Adopt::Class::Accessor::Fast;
2
6b8ba79f 3our $VERSION = '0.00200';
c5a105b3 4
5$INC{'Class/Accessor/Fast.pm'} = __FILE__;
6
6b8ba79f 7package #don't index
8 Class::Accessor::Fast;
c5a105b3 9
e579fc46 10use Moose;
11with 'MooseX::Emulate::Class::Accessor::Fast';
c5a105b3 12
131;
14
15=head1 NAME
16
17MooseX::Adopt::Class::Accessor::Fast -
18 Hijack Class::Accessor::Fast in %INC;
19
20=head1 SYNOPSYS
21
22 use MooseX::Adopt::Class::Accessor::Fast;
23 use CAF::Using::Module;
24 #that's it! JustWorks
25
26=head1 DESCRIPTION
27
28This module attempts to hijack L<Class::Accessor::Fast> in %INC and replace it
29with L<MooseX::Emulate::Class::Accessor::Fast>. Make sure it is loaded before the
30classes you have that use <Class::Accessor::Fast>. It is meant as a tool to help
31you migrate your project from L<Class::Accessor::Fast>, to
32 L<MooseX::Emulate::Class::Accessor::Fast> and ultimately, to L<Moose>.
33
34=head1 SEE ALSO
35
36L<Moose>, L<Class::Accessor::Fast>, L<MooseX::Emulate::Class::Accessor::Fast>
37
e579fc46 38=head1 AUTHORS
c5a105b3 39
e579fc46 40=over 4
c5a105b3 41
e579fc46 42=item Matt S Trout
43
44=item Guillermo Roditi (groditi) <groditi@cpan.org>
45
46=back
c5a105b3 47
48=head1 LICENSE
49
50You may distribute this code under the same terms as Perl itself.
51
52=cut
53