use the correct repo layout
[gitmo/MooseX-Emulate-Class-Accessor-Fast.git] / lib / MooseX / Adopt / Class / Accessor / Fast.pm
CommitLineData
c5a105b3 1package MooseX::Adopt::Class::Accessor::Fast;
2
3our $VERSION = 0.0001;
4
5$INC{'Class/Accessor/Fast.pm'} = __FILE__;
6
7package Class::Accessor::Fast;
8
9use base qw/MooseX::Emulate::Class::Accessor::Fast/;
10
111;
12
13=head1 NAME
14
15MooseX::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
26This module attempts to hijack L<Class::Accessor::Fast> in %INC and replace it
27with L<MooseX::Emulate::Class::Accessor::Fast>. Make sure it is loaded before the
28classes you have that use <Class::Accessor::Fast>. It is meant as a tool to help
29you 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
34L<Moose>, L<Class::Accessor::Fast>, L<MooseX::Emulate::Class::Accessor::Fast>
35
36=head1 AUTHOR
37
38Matt S Trout
39
40With Contributions from:
41Guillermo Roditi (groditi) <groditi@cpan.org>
42
43=head1 LICENSE
44
45You may distribute this code under the same terms as Perl itself.
46
47=cut
48