File Coverage

blib/lib/Pod/Wordlist/hanekomu.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1 1     1   700276 use 5.008;
  1         5  
  1         48  
2 1     1   6 use strict;
  1         2  
  1         38  
3 1     1   6 use warnings;
  1         3  
  1         64  
4              
5             package Pod::Wordlist::hanekomu;
6             {
7             $Pod::Wordlist::hanekomu::VERSION = '1.132680';
8             }
9             # ABSTRACT: Add words for spell checking POD (DEPRECATED)
10 1     1   6 use Test::Spelling;
  1         1  
  1         116  
11             set_spell_cmd 'aspell list';
12 1     1   6 use utf8;
  1         3  
  1         11  
13             our @person_names = qw(
14             Achim
15             Adam
16             Cushing
17             Damian Conway
18             Doherty
19             Doran
20             Eilam
21             Ekker
22             Florian
23             Marcel Gruenauer
24             Heinz
25             Helmberger
26             Hofstetter
27             Lapworth
28             Mark
29             Metheringham
30             Ran
31             Ricardo Signes rjbs
32             Takesako
33             Tatsuhiko Miyagawa
34             mst
35             );
36             our @tech_names = qw(
37             AES
38             AnyEvent
39             AOP
40             API
41             AspectJ
42             Babelfish
43             CamelCase
44             Coro
45             CPAN
46             CPANPLUS
47             DateTime
48             DBI
49             Django
50             DSL
51             EINTR
52             EPP
53             Firefox
54             FirePHP
55             FIXME
56             GraphViz
57             GUID
58             GUIDs
59             HTTP
60             HTTPS
61             IETF
62             IP
63             IPv4
64             IPv6
65             IRC
66             ISP
67             ISP's
68             JSON
69             MakeMaker
70             Markdown
71             Middleware
72             MongoDB
73             mkdn
74             modulino
75             MVC
76             OO
77             OOP
78             PARC
79             PHP
80             Plack
81             PSGI
82             RDBMS
83             README
84             ShipIt
85             SMTP
86             Spiffy
87             SQL
88             SQLite
89             SSL
90             STDERR
91             STDIN
92             STDOUT
93             svk
94             TIMTOWTDI
95             Unicode
96             URI
97             URI's
98             URIs
99             UTC
100             UTF
101             UUID
102             UUIDs
103             W3CDTF
104             wiki
105             XS
106             YAML
107             YAML's
108             );
109             our @stopwords = qw(
110             adaptee
111             adaptees
112             administrativa
113             afterwards
114             aggregator
115             aggregators
116             analyses
117             array's
118             backend
119             behaviour
120             benchmarked
121             blog
122             blogs
123             breakpoint
124             breakpoints
125             bugtracker
126             bundle's
127             callback
128             callbacks
129             callee
130             chomp
131             chomps
132             chunked
133             configurator
134             configurators
135             crosscutting
136             debugger's
137             denormalized
138             deserialized
139             distname
140             dotfile
141             dotfiles
142             filename
143             filenames
144             formatter
145             github
146             hash's
147             homepage
148             hostname
149             indices
150             init
151             iteratively
152             japanese
153             Joseki
154             kwalitee
155             locator
156             lookup
157             lookups
158             marshalling
159             metadata
160             middleware
161             mixin
162             monkeypatch
163             monkeypatches
164             monkeypatching
165             multi
166             multi-value
167             multi-valued
168             munge
169             munger
170             munging
171             namespace
172             namespaces
173             nestable
174             ok
175             op
176             parameterizable
177             pipe's
178             placeholders
179             pluggable
180             plugin's
181             plugins
182             pointcut
183             pointcuts
184             pre
185             precompute
186             precomputes
187             prepends
188             preprocessed
189             prereq
190             prereqs
191             probe's
192             redirections
193             redispatch
194             ref
195             reusability
196             runtime
197             san
198             searchable
199             seekable
200             segment's
201             shipit
202             sigils
203             startup
204             stopword
205             stopwords
206             storable
207             storages
208             stringification
209             stringifications
210             stringifies
211             stringify
212             subclass
213             subclasses
214             subdirectories
215             subdirectory
216             subobjects
217             symlinked
218             terminal's
219             timestamp
220             tokenizes
221             toolchain
222             tuple
223             unblessed
224             unshifts
225             username
226             uuid
227             value's
228             variable's
229             vim
230             wellformedness
231             whitelist
232             whitelists
233             workflow
234             workflows
235             wormhole
236             yml
237             );
238              
239             # dedup
240             my %words = map { $_ => 1 } @person_names, @tech_names, @stopwords;
241             add_stopwords(sort keys %words);
242             $ENV{LANG} = 'C';
243             1;
244              
245             __END__