/usr/share/perl5/Bot/Training/Plugin.pm is in libbot-training-perl 0.06-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 | package Bot::Training::Plugin;
our $AUTHORITY = 'cpan:AVAR';
$Bot::Training::Plugin::VERSION = '0.06';
use 5.010;
use Moose;
use File::ShareDir qw< :ALL >;
use File::Spec::Functions qw< catdir catfile >;
use namespace::clean -except => 'meta';
sub file {
my ($self) = @_;
my $class = ref $self;
my ($last) = $class =~ m[::([^:]+)$];
$class =~ s[::][-]g;
my $file = dist_file( $class, lc($last) . '.trn');
return $file;
}
__PACKAGE__->meta->make_immutable;
|