This file is indexed.

/usr/share/perl5/auto/share/dist/Poet/generate.skel/lib/MyApp/Mason.pm is in libpoet-perl 0.16-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
package <% $app_name %>::Mason;
use Poet qw($conf $poet);
use Poet::Moose;

extends 'Poet::Mason';

# Add customizations to Poet::Mason here.
#
# e.g. Add plugins
#
# override 'get_plugins' => sub {
#     return ( super(), 'LvalueAttributes', 'TidyObjectFiles' );
# }

# You can also create Mason subclasses in <% $app_name %>/Mason, e.g.
# <% $app_name %>::Mason::Request, and they will be autodetected by Mason.

1;