root/lang/perl/Data-Semantic-URI/trunk/lib/Data/Semantic/URI/gopher.pm @ 9765

Revision 9765, 0.7 kB (checked in by hanekomu, 5 years ago)

r6096@nbgr: marcel | 2008-04-18 16:33:18 +0200
lang/perl/Data-Semantic-URI: initial commit

Line 
1package Data::Semantic::URI::gopher;
2
3use strict;
4use warnings;
5
6
7our $VERSION = '0.03';
8
9
10use base qw(Data::Semantic::URI);
11
12
13use constant REGEXP_KEYS => qw(URI gopher);
14
15
161;
17
18
19__END__
20
21{% USE p = PodGenerated %}
22
23=head1 NAME
24
25{% p.package %} - semantics for gopher URIs
26
27=head1 WARNING
28
29This class is unfinished. I've released the distribution nevertheless because
30it already contains other usable classes and so I can get CPAN tester results
31early.
32
33=head1 SYNOPSIS
34
35    my $obj = {% p.package %}->new;
36    if ($obj->is_well_formed($value)) { ... }
37
38=head1 DESCRIPTION
39
40=head1 METHODS
41
42=over 4
43
44{% p.write_methods %}
45
46=back
47
48{% p.write_inheritance %}
49
50{% PROCESS standard_pod %}
51
52=cut
53
Note: See TracBrowser for help on using the browser.