quote version numbers
[gitmo/MooseX-Emulate-Class-Accessor-Fast.git] / lib / MooseX / Adopt / Class / Accessor / Fast.pm
CommitLineData
c5a105b3 1package MooseX::Adopt::Class::Accessor::Fast;
2
4905e2e3 3our $VERSION = '0.00100';
c5a105b3 4
5$INC{'Class/Accessor/Fast.pm'} = __FILE__;
6
7package Class::Accessor::Fast;
8
e579fc46 9use Moose;
10with 'MooseX::Emulate::Class::Accessor::Fast';
c5a105b3 11
121;
13
14=head1 NAME
15
16MooseX::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
27This module attempts to hijack L<Class::Accessor::Fast> in %INC and replace it
28with L<MooseX::Emulate::Class::Accessor::Fast>. Make sure it is loaded before the
29classes you have that use <Class::Accessor::Fast>. It is meant as a tool to help
30you 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
35L<Moose>, L<Class::Accessor::Fast>, L<MooseX::Emulate::Class::Accessor::Fast>
36
e579fc46 37=head1 AUTHORS
c5a105b3 38
e579fc46 39=over 4
c5a105b3 40
e579fc46 41=item Matt S Trout
42
43=item Guillermo Roditi (groditi) <groditi@cpan.org>
44
45=back
c5a105b3 46
47=head1 LICENSE
48
49You may distribute this code under the same terms as Perl itself.
50
51=cut
52