This file is indexed.

/usr/share/perl5/MooseX/Adopt/Class/Accessor/Fast.pm is in libmoosex-emulate-class-accessor-fast-perl 0.00903-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package MooseX::Adopt::Class::Accessor::Fast;

our $VERSION = '0.00200';

$INC{'Class/Accessor/Fast.pm'} = __FILE__;

package #don't index
    Class::Accessor::Fast;

use Moose;
use namespace::clean;
with 'MooseX::Emulate::Class::Accessor::Fast';

1;

=head1 NAME

MooseX::Adopt::Class::Accessor::Fast -
  Hijack Class::Accessor::Fast in %INC;

=head1 SYNOPSYS

    use MooseX::Adopt::Class::Accessor::Fast;
    use CAF::Using::Module;
    #that's it! JustWorks

=head1 DESCRIPTION

This module attempts to hijack L<Class::Accessor::Fast> in %INC and replace it
with L<MooseX::Emulate::Class::Accessor::Fast>. Make sure it is loaded before the
classes you have that use <Class::Accessor::Fast>. It is meant as a tool to help
you migrate your project from L<Class::Accessor::Fast>, to
 L<MooseX::Emulate::Class::Accessor::Fast> and ultimately, to L<Moose>.

=head1 SEE ALSO

L<Moose>, L<Class::Accessor::Fast>, L<MooseX::Emulate::Class::Accessor::Fast>

=head1 AUTHORS

=over 4

=item Matt S Trout

=item Guillermo Roditi (groditi) <groditi@cpan.org>

=back

=head1 LICENSE

You may distribute this code under the same terms as Perl itself.

=cut