forked from beyondgrep/ack1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.pm
39 lines (21 loc) · 857 Bytes
/
Plugin.pm
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
package App::Ack::Plugin;
=head1 OVERVIEW
The premise is that each file is a repository of zero or more
resources. Each resource contains zero or more lines of text, which
ack will process.
For the basic text file that ack handles now, it's simple: Each
text file is a repository that has one resource. The repository
and resource are the same.
You can look at Repository.pm and Resource.pm and see how I'm calling
it. It's really simple, and there's a lot of overhead.
Maybe now's the time for me to work on Plugin.pod. :-)
=head1 STRUCTURE
Say you have code that will let you search through DLL files.
=head2 App/Ack/Plugin/DLL.pm
package App::Ack::Plugin::DLL;
package App::Ack::Resource::DLL;
our @ISA = qw( App::Ack::Resource );
package App::Ack::Repository::DLL;
our @ISA = qw( App::Ack::Repository );
=cut
1;