File Coverage

blib/lib/Acme/MetaSyntactic/dilbert.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Acme::MetaSyntactic::dilbert;
2 1     1   79501 use strict;
  1         4  
  1         32  
3 1     1   6 use Acme::MetaSyntactic::List;
  1         2  
  1         266  
4             our @ISA = qw( Acme::MetaSyntactic::List );
5             our $VERSION = '1.005';
6             __PACKAGE__->init();
7              
8             our %Remote = (
9             source => 'http://www.triviaasylum.com/dilbert/diltriv.html',
10             extract => sub {
11             return
12             grep { $_ ne '' }
13             map { s/_+/_/g; s/^_//; $_ }
14             map { y!- '"/!____ !; s/\.//g; split ' ', lc }
15             $_[0] =~ m!([^<]+)!gm;
16             },
17             );
18              
19             1;
20              
21             =encoding iso-8859-1
22              
23             =head1 NAME
24              
25             Acme::MetaSyntactic::dilbert - The Dilbert theme
26              
27             =head1 DESCRIPTION
28              
29             Characters from the Dilbert daily strip.
30              
31             The list (with details) is available here:
32             L.
33              
34             =head1 CONTRIBUTOR
35              
36             Sébastien Aperghis-Tramoni.
37              
38             =head1 CHANGES
39              
40             =over 4
41              
42             =item *
43              
44             2014-04-07 - v1.005
45              
46             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.039.
47              
48             =item *
49              
50             2013-06-17 - v1.004
51              
52             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.033.
53              
54             =item *
55              
56             2013-06-03 - v1.003
57              
58             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.032.
59              
60             =item *
61              
62             2013-01-14 - v1.002
63              
64             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.029.
65              
66             =item *
67              
68             2012-09-10 - v1.001
69              
70             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.018.
71              
72             =item *
73              
74             2012-05-07 - v1.000
75              
76             Updated with new additions since November 2006, and
77             received its own version number in Acme-MetaSyntactic-Themes version 1.000.
78              
79             =item *
80              
81             2006-10-30
82              
83             Updated from the source web site in Acme-MetaSyntactic version 0.98.
84              
85             =item *
86              
87             2006-10-23
88              
89             Updated from the source web site in Acme-MetaSyntactic version 0.97.
90              
91              
92             =item *
93              
94             2006-09-18
95              
96             Updated from the source web site in Acme-MetaSyntactic version 0.92.
97              
98             =item *
99              
100             2006-09-11
101              
102             Updated from the source web site in Acme-MetaSyntactic version 0.91.
103              
104             =item *
105              
106             2006-08-26
107              
108             Updated from the source web site in Acme-MetaSyntactic version 0.89.
109              
110             =item *
111              
112             2006-07-10
113              
114             Updated from the source web site in Acme-MetaSyntactic version 0.82.
115              
116             =item *
117              
118             2006-07-03
119              
120             Updated from the source web site in Acme-MetaSyntactic version 0.81.
121              
122             =item *
123              
124             2006-06-26
125              
126             Updated from the source web site in Acme-MetaSyntactic version 0.80.
127              
128             =item *
129              
130             2006-06-12
131              
132             Updated from the source web site in Acme-MetaSyntactic version 0.78.
133              
134             =item *
135              
136             2006-04-03
137              
138             Updated from the source web site in Acme-MetaSyntactic version 0.68.
139              
140             =item *
141              
142             2006-02-06
143              
144             Updated from the source web site in Acme-MetaSyntactic version 0.60.
145              
146             =item *
147              
148             2006-01-16
149              
150             Updated from the source web site in Acme-MetaSyntactic version 0.57.
151              
152             =item *
153              
154             2005-12-19
155              
156             Updated from the source web site in Acme-MetaSyntactic version 0.53.
157              
158             =item *
159              
160             2005-12-12
161              
162             Updated from the source web site in Acme-MetaSyntactic version 0.52.
163              
164             =item *
165              
166             2005-12-05
167              
168             Updated from the source web site in Acme-MetaSyntactic version 0.51.
169              
170             =item *
171              
172             2005-11-21
173              
174             Remote list added and theme updated in Acme-MetaSyntactic version 0.49.
175              
176             =item *
177              
178             2005-07-04
179              
180             Updated with a brand new list in Acme-MetaSyntactic version 0.29.
181              
182             =item *
183              
184             2005-03-28
185              
186             Duplicate removed in Acme-MetaSyntactic version 0.15.
187              
188             =item *
189              
190             2005-01-14
191              
192             Introduced in Acme-MetaSyntactic version 0.03.
193              
194             =back
195              
196             =head1 SEE ALSO
197              
198             L, L.
199              
200             =cut
201              
202             __DATA__