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