This file is indexed.

/usr/share/perl5/Spoon.pm is in libspoon-perl 0.24-2.

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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package Spoon;
use Spoon::Base -Base;
our $VERSION = '0.24';

const class_id => 'main';

sub load_hub {
    $self->destroy_hub;
    my $hub = $self->hub(@_);
    $hub->main($self);
    $self->init;
    return $hub;
}

__END__

=head1 NAME

Spoon - A Spiffy Application Building Framework

=head1 SYNOPSIS

    Out of the Cutlery Drawer
    And onto the Dinner Table

=head1 DESCRIPTION

Spoon is an Application Framework that is designed primarily for
building Social Software web applications. The Kwiki wiki software is
built on top of Spoon.

Spoon::Base is the primary base class for all the Spoon::* modules.
Spoon.pm inherits from Spiffy.pm.

Spoon is not an application in and of itself. (As compared to Kwiki)
You need to build your own applications from it.

=head1 SEE ALSO

Kwiki, Spork, Spiffy, IO::All

=head1 DEDICATION

This project is dedicated to the memory of Iain "Spoon" Truskett.

=head1 CREDIT

Dave Rolsky and Chris Dent have made major contributions to this code
base. Of particular note, Dave removed the memory cycles from the hub
architecture, allowing safe use with mod_perl.

(Dave, Chris and myself currently work at Socialtext, where this
framework is heavily used.)

=head1 AUTHOR

Ingy döt Net <ingy@cpan.org>

=head1 COPYRIGHT

Copyright (c) 2004. Brian Ingerson. All rights reserved.
Copyright (c) 2006. Ingy döt Net. All rights reserved.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html

=cut