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