linguistics 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.simplecov +12 -0
- data/ChangeLog +773 -11
- data/History.rdoc +9 -0
- data/Manifest.txt +3 -2
- data/README.rdoc +5 -5
- data/Rakefile +49 -19
- data/examples/generalize_sentence.rb +2 -2
- data/lib/linguistics.rb +4 -4
- data/lib/linguistics/en/articles.rb +1 -1
- data/lib/linguistics/en/conjugation.rb +6 -6
- data/lib/linguistics/en/conjunctions.rb +1 -1
- data/lib/linguistics/en/infinitives.rb +1 -1
- data/lib/linguistics/en/linkparser.rb +11 -11
- data/lib/linguistics/en/numbers.rb +11 -11
- data/lib/linguistics/en/participles.rb +1 -1
- data/lib/linguistics/en/pluralization.rb +16 -16
- data/lib/linguistics/en/wordnet.rb +1 -1
- data/lib/linguistics/languagebehavior.rb +1 -1
- data/spec/{lib/constants.rb → constants.rb} +0 -0
- data/spec/helpers.rb +39 -0
- data/spec/linguistics/en/articles_spec.rb +194 -203
- data/spec/linguistics/en/conjugation_spec.rb +519 -521
- data/spec/linguistics/en/conjunctions_spec.rb +31 -47
- data/spec/linguistics/en/infinitives_spec.rb +193 -207
- data/spec/linguistics/en/linkparser_spec.rb +9 -20
- data/spec/linguistics/en/numbers_spec.rb +289 -302
- data/spec/linguistics/en/participles_spec.rb +6 -20
- data/spec/linguistics/en/pluralization_spec.rb +894 -908
- data/spec/linguistics/en/stemmer_spec.rb +10 -23
- data/spec/linguistics/en/titlecase_spec.rb +3 -13
- data/spec/linguistics/en/wordnet_spec.rb +10 -30
- data/spec/linguistics/en_spec.rb +14 -28
- data/spec/linguistics/inflector_spec.rb +3 -21
- data/spec/linguistics/iso639_spec.rb +28 -37
- data/spec/linguistics/monkeypatches_spec.rb +5 -14
- data/spec/linguistics_spec.rb +11 -30
- metadata +44 -15
- metadata.gz.sig +0 -0
- data/spec/lib/helpers.rb +0 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9acfd8f14c782221d110dd3dcce11f8bb9381e9c
|
4
|
+
data.tar.gz: 791a541430535c481839ae83b8b71ceb90cf74d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1ac3cbfb3683f83b1ed075610277d5e79de4054a4fa9e78d79ce66dd811fcd1cf17c1ca8b8f39c0b0b296ebb00c62e331b208c33c7afbbad1cd263e21b2b9fe
|
7
|
+
data.tar.gz: a5294773167d72c45c6d52ffc4cb0fd614c4ab10b9383cb9e1de58bfeb5cc50b6373da02b6e0128358a37e4857203e0e8748f9b1e2956dd22b9afe5b73fa1de4
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/.simplecov
ADDED
data/ChangeLog
CHANGED
@@ -1,8 +1,771 @@
|
|
1
|
+
2013-12-02 Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
* lib/linguistics/en/conjugation.rb,
|
4
|
+
spec/linguistics/en/conjugation_spec.rb:
|
5
|
+
Merge pull request #5 from ippeiukai/fix-
|
6
|
+
issue10-past_tense_for_words_end_with_y
|
7
|
+
|
8
|
+
fix past tense for words end with y
|
9
|
+
[de381a81754d] [github/master, tip]
|
10
|
+
|
11
|
+
* lib/linguistics/en/conjugation.rb,
|
12
|
+
spec/linguistics/en/conjugation_spec.rb:
|
13
|
+
Merge pull request #4 from ippeiukai/fix-
|
14
|
+
issue8-past_tense_for_doubling_verbs
|
15
|
+
|
16
|
+
fix past tense for doubling verbs
|
17
|
+
[f521914decb0]
|
18
|
+
|
19
|
+
* Merge pull request #3 from ippeiukai/fix-
|
20
|
+
issue9-present_participle_for_words_ending_with_e
|
21
|
+
|
22
|
+
fix present participle conjugation of verbs that end with 'e'
|
23
|
+
[36821e2da2c8]
|
24
|
+
|
25
|
+
2013-10-28 Ippei UKAI <ippei_ukai@mac.com>
|
26
|
+
|
27
|
+
* lib/linguistics/en/conjugation.rb,
|
28
|
+
spec/linguistics/en/conjugation_spec.rb:
|
29
|
+
fix past tense for words end with y
|
30
|
+
[66887f823d20]
|
31
|
+
|
32
|
+
* lib/linguistics/en/conjugation.rb,
|
33
|
+
spec/linguistics/en/conjugation_spec.rb:
|
34
|
+
fix past tense for doubling verbs
|
35
|
+
[e3211dc778ba]
|
36
|
+
|
37
|
+
* lib/linguistics/en/conjugation.rb,
|
38
|
+
spec/linguistics/en/conjugation_spec.rb:
|
39
|
+
fix present participle conjugation of verbs that end with 'e'
|
40
|
+
[5aff030d59b0]
|
41
|
+
|
42
|
+
2013-09-16 Michael Granger <ged@FaerieMUD.org>
|
43
|
+
|
44
|
+
* .hgignore, .rvm.gems, .tm_properties, Gemfile, Rakefile:
|
45
|
+
Updating dependencies, adding Gemfile
|
46
|
+
[47e042fad85f]
|
47
|
+
|
48
|
+
2013-02-27 Michael Granger <ged@FaerieMUD.org>
|
49
|
+
|
50
|
+
* .hgtags:
|
51
|
+
Added tag v2.0.2 for changeset a516c984a9a1
|
52
|
+
[8b0c64852da3]
|
53
|
+
|
54
|
+
* .hgsigs:
|
55
|
+
Added signature for changeset d2eeec0b7832
|
56
|
+
[703b6021e69c]
|
57
|
+
|
58
|
+
* History.rdoc, lib/linguistics.rb:
|
59
|
+
Bump the patch version, update history.
|
60
|
+
[e86105440abd]
|
61
|
+
|
62
|
+
* .rvmrc, lib/linguistics.rb:
|
63
|
+
Fix for Ruby 2: don't memoize the inflector.
|
64
|
+
[ef83e49f84ab]
|
65
|
+
|
66
|
+
2013-02-25 Michael Granger <ged@FaerieMUD.org>
|
67
|
+
|
68
|
+
* .hgtags:
|
69
|
+
Added tag v2.0.1 for changeset d8d00bf937f2
|
70
|
+
[930c605bcc46]
|
71
|
+
|
72
|
+
* .hgsigs:
|
73
|
+
Added signature for changeset 5240c28c80bd
|
74
|
+
[10745470d592]
|
75
|
+
|
76
|
+
* History.rdoc, lib/linguistics.rb:
|
77
|
+
Bump patch version, update history.
|
78
|
+
[17320384c55f]
|
79
|
+
|
80
|
+
2012-12-18 Michael Granger <ged@FaerieMUD.org>
|
81
|
+
|
82
|
+
* Rakefile:
|
83
|
+
Add missing loggability dependency to the gem (fixes #3).
|
84
|
+
[839b0adae20e]
|
85
|
+
|
86
|
+
2012-11-26 Michael Granger <ged@FaerieMUD.org>
|
87
|
+
|
88
|
+
* lib/linguistics/en/pluralization.rb,
|
89
|
+
spec/linguistics/en/articles_spec.rb,
|
90
|
+
spec/linguistics/en/pluralization_spec.rb:
|
91
|
+
Adding some monkeypatch specs (refs #1), fixing some edge-case
|
92
|
+
pluralizations.
|
93
|
+
[7edf115cf3e3]
|
94
|
+
|
95
|
+
2012-10-10 Michael Granger <ged@FaerieMUD.org>
|
96
|
+
|
97
|
+
* README.rdoc:
|
98
|
+
The inevitable post-release documentation fixes.
|
99
|
+
[d0c4250a2b3d]
|
100
|
+
|
101
|
+
* .hgtags:
|
102
|
+
Added tag v2.0.0 for changeset 1359338b7128
|
103
|
+
[cfa80f44c5e6]
|
104
|
+
|
105
|
+
* .hgsigs:
|
106
|
+
Added signature for changeset a7cda4b8747c
|
107
|
+
[990523f4bd9d]
|
108
|
+
|
109
|
+
* History.rdoc, Manifest.txt, lib/linguistics.rb,
|
110
|
+
lib/linguistics/en/stemmer.rb, spec/lib/helpers.rb,
|
111
|
+
spec/linguistics/en/articles_spec.rb,
|
112
|
+
spec/linguistics/en/stemmer_spec.rb:
|
113
|
+
Prep for release.
|
114
|
+
[9728dc3f3a14]
|
115
|
+
|
116
|
+
* spec/linguistics/en/stemmer_spec.rb,
|
117
|
+
spec/linguistics/en/stemmer_spec.rb.rb:
|
118
|
+
Fix the name of the stemmer spec
|
119
|
+
[e8362b3d9f95]
|
120
|
+
|
121
|
+
* .rvm.gems, Rakefile, lib/linguistics/en/stemmer.rb,
|
122
|
+
spec/linguistics/en/stemmer_spec.rb.rb:
|
123
|
+
Adding support for Ruby-Stemmer
|
124
|
+
[ee1727bbfacd]
|
125
|
+
|
126
|
+
* lib/linguistics/en/wordnet.rb, spec/linguistics/en/wordnet_spec.rb:
|
127
|
+
Make wordnet re-use the error it raised when it was required if it
|
128
|
+
couldn't be loaded
|
129
|
+
[100843338d95]
|
130
|
+
|
131
|
+
2012-10-01 Michael Granger <ged@FaerieMUD.org>
|
132
|
+
|
133
|
+
* .rvm.gems, Rakefile, spec/lib/helpers.rb:
|
134
|
+
Add coverage task.
|
135
|
+
[1bb423b2f1ab]
|
136
|
+
|
137
|
+
2012-08-21 Michael Granger <ged@FaerieMUD.org>
|
138
|
+
|
139
|
+
* Manifest.txt:
|
140
|
+
Fix the manifest
|
141
|
+
[7b9e452a28b4]
|
142
|
+
|
143
|
+
* .pryrc, lib/linguistics.rb, lib/linguistics/en.rb,
|
144
|
+
lib/linguistics/en/conjugation.rb, lib/linguistics/en/numbers.rb,
|
145
|
+
lib/linguistics/en/wordnet.rb, lib/linguistics/inflector.rb,
|
146
|
+
lib/linguistics/mixins.rb, spec/linguistics/mixins_spec.rb,
|
147
|
+
spec/linguistics_spec.rb:
|
148
|
+
Loggability cleanup
|
149
|
+
[dff0d2a21aa7]
|
150
|
+
|
151
|
+
2012-08-20 Michael Granger <ged@FaerieMUD.org>
|
152
|
+
|
153
|
+
* lib/linguistics/en/wordnet.rb, spec/lib/helpers.rb,
|
154
|
+
spec/linguistics/en/wordnet_spec.rb:
|
155
|
+
Fix Linguistics::EN::WordNet.synsets.
|
156
|
+
[22b62066fe77]
|
157
|
+
|
158
|
+
* Manifest.txt:
|
159
|
+
Add the en-language tester to the manifest
|
160
|
+
[6041c3b0374a]
|
161
|
+
|
162
|
+
2012-08-18 Michael Granger <ged@FaerieMUD.org>
|
163
|
+
|
164
|
+
* examples/endocs.rb:
|
165
|
+
Added tester script for EN-module docs
|
166
|
+
[a4bb1f4086e9]
|
167
|
+
|
168
|
+
* .pryrc, README.rdoc, lib/linguistics.rb, lib/linguistics/en.rb,
|
169
|
+
lib/linguistics/en/articles.rb, lib/linguistics/en/conjugation.rb,
|
170
|
+
lib/linguistics/en/conjunctions.rb,
|
171
|
+
lib/linguistics/en/infinitives.rb, lib/linguistics/en/linkparser.rb,
|
172
|
+
lib/linguistics/en/numbers.rb, lib/linguistics/en/participles.rb,
|
173
|
+
lib/linguistics/en/pluralization.rb,
|
174
|
+
lib/linguistics/en/titlecase.rb, lib/linguistics/en/wordnet.rb,
|
175
|
+
lib/linguistics/inflector.rb, lib/linguistics/iso639.rb,
|
176
|
+
spec/linguistics/en/articles_spec.rb,
|
177
|
+
spec/linguistics/en/conjunctions_spec.rb,
|
178
|
+
spec/linguistics/en/participles_spec.rb,
|
179
|
+
spec/linguistics/en/pluralization_spec.rb,
|
180
|
+
spec/linguistics/en/titlecase_spec.rb,
|
181
|
+
spec/linguistics/en/wordnet_spec.rb:
|
182
|
+
Documentation fixes, bugfixes
|
183
|
+
[adce12f8e8b1]
|
184
|
+
|
185
|
+
2012-08-06 Michael Granger <ged@FaerieMUD.org>
|
186
|
+
|
187
|
+
* lib/linguistics/en/wordnet.rb,
|
188
|
+
spec/linguistics/en/conjugation_spec.rb,
|
189
|
+
spec/linguistics/en/linkparser_spec.rb:
|
190
|
+
LinkParser spec fixes.
|
191
|
+
[8bb3f0e5bf23]
|
192
|
+
|
193
|
+
* .rvm.gems, .tm_properties, Manifest.txt, README.rdoc, Rakefile,
|
194
|
+
lib/linguistics.rb, lib/linguistics/en/conjugation.rb,
|
195
|
+
lib/linguistics/en/wordnet.rb, lib/linguistics/utils.rb,
|
196
|
+
spec/lib/helpers.rb, spec/linguistics/en/articles_spec.rb,
|
197
|
+
spec/linguistics/en/conjugation_spec.rb,
|
198
|
+
spec/linguistics/en/conjunctions_spec.rb,
|
199
|
+
spec/linguistics/en/infinitives_spec.rb,
|
200
|
+
spec/linguistics/en/linkparser_spec.rb,
|
201
|
+
spec/linguistics/en/numbers_spec.rb,
|
202
|
+
spec/linguistics/en/participles_spec.rb,
|
203
|
+
spec/linguistics/en/pluralization_spec.rb,
|
204
|
+
spec/linguistics/en/titlecase_spec.rb,
|
205
|
+
spec/linguistics/en/wordnet_spec.rb, spec/linguistics/en_spec.rb,
|
206
|
+
spec/linguistics_spec.rb:
|
207
|
+
Prepping for 2.x release
|
208
|
+
[f43c7e06a8e2]
|
209
|
+
|
210
|
+
* History.rdoc, LICENSE, Manifest.txt, lib/linguistics/en.rb,
|
211
|
+
lib/linguistics/en/articles.rb, lib/linguistics/en/conjugation.rb,
|
212
|
+
lib/linguistics/en/conjunctions.rb,
|
213
|
+
lib/linguistics/en/infinitives.rb, lib/linguistics/en/linkparser.rb,
|
214
|
+
lib/linguistics/en/numbers.rb, lib/linguistics/en/participles.rb,
|
215
|
+
lib/linguistics/en/pluralization.rb,
|
216
|
+
lib/linguistics/en/titlecase.rb, lib/linguistics/en/wordnet.rb,
|
217
|
+
spec/linguistics/en/wordnet_spec.rb:
|
218
|
+
Prepping for release
|
219
|
+
[10188c389e09]
|
220
|
+
|
221
|
+
2012-04-16 Michael Granger <ged@FaerieMUD.org>
|
222
|
+
|
223
|
+
* .pryrc, .rvm.gems, .rvmrc, History.md, History.rdoc, README.md,
|
224
|
+
README.rdoc, Rakefile:
|
225
|
+
Update build environment.
|
226
|
+
[afa3dc314dea]
|
227
|
+
|
228
|
+
2011-08-16 Michael Granger <ged@FaerieMUD.org>
|
229
|
+
|
230
|
+
* lib/linguistics/en/wordnet.rb, lib/linguistics/utils.rb:
|
231
|
+
Comment cleanup
|
232
|
+
[88a57e5d8d0c]
|
233
|
+
|
234
|
+
2011-07-12 Michael Granger <ged@FaerieMUD.org>
|
235
|
+
|
236
|
+
* lib/linguistics/en/conjugation.rb:
|
237
|
+
Removed the giant debugging log dump in favor of short diagnostics.
|
238
|
+
[899b1aba1bab]
|
239
|
+
|
240
|
+
* Rakefile:
|
241
|
+
Updated linkparser dependency to the latest release
|
242
|
+
[6aa3779835ba]
|
243
|
+
|
244
|
+
* spec/linguistics/en/conjugation_spec.rb:
|
245
|
+
Turn off debugging output in the conjugation spec
|
246
|
+
[51eb3740d667]
|
247
|
+
|
248
|
+
* README.md, lib/linguistics/en.rb, lib/linguistics/en/conjugation.rb,
|
249
|
+
spec/linguistics/en/conjugation_spec.rb:
|
250
|
+
Adding English verb conjugation via Robert Berry (bdigital)'s fork
|
251
|
+
on Github.
|
252
|
+
[08d2eb61db3f]
|
253
|
+
|
254
|
+
* Rakefile, spec/lib/helpers.rb:
|
255
|
+
Updated for recent versions of RSpec.
|
256
|
+
[9d542f78a7f8]
|
257
|
+
|
258
|
+
2011-07-11 Michael Granger <ged@FaerieMUD.org>
|
259
|
+
|
260
|
+
* .hgignore, Rakefile:
|
261
|
+
De-YARD.
|
262
|
+
[95eb3c1a2337]
|
263
|
+
|
264
|
+
2011-02-07 Michael Granger <ged@FaerieMUD.org>
|
265
|
+
|
266
|
+
* Manifest.txt:
|
267
|
+
Reordering Manifest to make check_manifest work.
|
268
|
+
[6dcc8d23992e]
|
269
|
+
|
270
|
+
* .rvmrc:
|
271
|
+
Adding a project .rvmrc to switch to 1.9.2
|
272
|
+
[4fe5bb5c6711]
|
273
|
+
|
274
|
+
2011-02-05 Michael Granger <ged@FaerieMUD.org>
|
275
|
+
|
276
|
+
* spec/linguistics/en/numbers_spec.rb:
|
277
|
+
Merged with 144:0218912e346c
|
278
|
+
[3fa76479ac72]
|
279
|
+
|
280
|
+
2011-01-19 Michael Granger <ged@FaerieMUD.org>
|
281
|
+
|
282
|
+
* spec/linguistics/en/numbers_spec.rb:
|
283
|
+
Fix the numwords spec
|
284
|
+
[d30d0ae6f3eb]
|
285
|
+
|
286
|
+
2011-02-05 Michael Granger <ged@FaerieMUD.org>
|
287
|
+
|
288
|
+
* spec/linguistics/en/numbers_spec.rb:
|
289
|
+
Change the numbers spec to use the extension predicate
|
290
|
+
[b197d3f7c7dc]
|
291
|
+
|
292
|
+
2011-01-14 Michael Granger <ged@FaerieMUD.org>
|
293
|
+
|
294
|
+
* lib/linguistics/en.rb, spec/linguistics/en_spec.rb:
|
295
|
+
Adding Linguistics::EN.has_extension? for feature-testing.
|
296
|
+
[c943b8e5e78b]
|
297
|
+
|
298
|
+
2011-01-13 Michael Granger <ged@FaerieMUD.org>
|
299
|
+
|
300
|
+
* lib/linguistics/en/titlecase.rb,
|
301
|
+
spec/linguistics/en/titlecase_spec.rb:
|
302
|
+
Add specs (and fixed bugs they uncovered) for EN#to_camel_case and
|
303
|
+
EN#un_camel_case
|
304
|
+
[23061df53c5f]
|
305
|
+
|
306
|
+
2011-01-11 Michael Granger <ged@FaerieMUD.org>
|
307
|
+
|
308
|
+
* lib/linguistics/en/wordnet.rb:
|
309
|
+
Fix shadowed variables.
|
310
|
+
[c1fb915e7813]
|
311
|
+
|
312
|
+
* Manifest.txt:
|
313
|
+
Updated the release manifest
|
314
|
+
[c7f6fbf10d12]
|
315
|
+
|
316
|
+
* Manifest.txt:
|
317
|
+
Updating the manifest.
|
318
|
+
[79d632cc7cbe]
|
319
|
+
|
320
|
+
* Rakefile:
|
321
|
+
Update the Rakefile
|
322
|
+
[72057accf468]
|
323
|
+
|
324
|
+
* project.yml:
|
325
|
+
Removing old project file
|
326
|
+
[660f2ef1bd2b]
|
327
|
+
|
328
|
+
2011-09-01 Michael Granger <ged@FaerieMUD.org>
|
329
|
+
|
330
|
+
* .hgsigs:
|
331
|
+
Added signature for changeset 48267fd4b170
|
332
|
+
[12b48b6c4740] <fixes_for_1.0>
|
333
|
+
|
334
|
+
* ChangeLog, Rakefile, lib/linguistics.rb, lib/linguistics/en.rb,
|
335
|
+
project.yml:
|
336
|
+
Bugfix for Linguistics 1: Linguistics::EN.ordinate
|
337
|
+
[45b3311e6353] <fixes_for_1.0>
|
338
|
+
|
339
|
+
2011-01-10 Michael Granger <ged@FaerieMUD.org>
|
340
|
+
|
341
|
+
* examples/klingon.rb:
|
342
|
+
Better comments for the klingon example
|
343
|
+
[a324b320a51f] [github/redesign_for_2.0]
|
344
|
+
|
345
|
+
* README.md, examples/klingon.rb:
|
346
|
+
Updating the "how to add a language module" section of the README
|
347
|
+
[d48f6b9b9c4d]
|
348
|
+
|
349
|
+
* spec/linguistics/en_spec.rb, spec/linguistics/inflector_spec.rb,
|
350
|
+
spec/linguistics/iso639_spec.rb:
|
351
|
+
Adding some more test coverage
|
352
|
+
[8c779dd57160]
|
353
|
+
|
354
|
+
* lib/linguistics/en.rb:
|
355
|
+
Removed the explicit #language method, as it's now implemented in
|
356
|
+
the inflector
|
357
|
+
[c85a2f5a2323]
|
358
|
+
|
359
|
+
* lib/linguistics.rb, lib/linguistics/inflector.rb,
|
360
|
+
lib/linguistics/iso639.rb:
|
361
|
+
Fixed a bug in inflector construction for languages with only a
|
362
|
+
3-character code
|
363
|
+
[72bbb09fea5a]
|
364
|
+
|
365
|
+
* lib/linguistics.rb, lib/linguistics/monkeypatches.rb,
|
366
|
+
spec/linguistics/monkeypatches_spec.rb:
|
367
|
+
Splitting out monkeypatches into a separate file
|
368
|
+
[706bfe3590f7]
|
369
|
+
|
370
|
+
* lib/linguistics/mixins.rb, spec/linguistics/mixins_spec.rb:
|
371
|
+
Removing unused mixin code
|
372
|
+
[a187612d1385]
|
373
|
+
|
374
|
+
* lib/linguistics/languagebehavior.rb:
|
375
|
+
Added a RSpec 2 shared behavior for testing language modules
|
376
|
+
[940d93685177]
|
377
|
+
|
378
|
+
* Rakefile:
|
379
|
+
Fixes for systems without the dev hoe plugins
|
380
|
+
[4d28fafe4564]
|
381
|
+
|
382
|
+
* lib/linguistics/en.rb, lib/linguistics/inflector.rb:
|
383
|
+
Fixing some API docs
|
384
|
+
[6924593b2a7b]
|
385
|
+
|
386
|
+
2010-12-16 Michael Granger <ged@FaerieMUD.org>
|
387
|
+
|
388
|
+
* lib/linguistics/languagetags.tb:
|
389
|
+
Remove unused module
|
390
|
+
[470a4a2483c2]
|
391
|
+
|
392
|
+
* .hgignore, ChangeLog, README, README.english, Rakefile,
|
393
|
+
lib/linguistics.rb, lib/linguistics/en.rb,
|
394
|
+
lib/linguistics/en/infinitive.rb, lib/linguistics/en/infinitives.rb,
|
395
|
+
lib/linguistics/en/linkparser.rb, lib/linguistics/en/wordnet.rb,
|
396
|
+
lib/linguistics/iso639.rb, tests/TEMPLATE.rb.tpl,
|
397
|
+
tests/en/infinitive.tests.rb, tests/en/inflect.tests.rb,
|
398
|
+
tests/en/lafcadio.tests.rb, tests/en/linkparser.tests.rb,
|
399
|
+
tests/en/lprintf.tests.rb, tests/en/titlecase.tests.rb,
|
400
|
+
tests/en/wordnet.tests.rb, tests/lingtestcase.rb, utils.rb:
|
401
|
+
Merged in work from the 20_redesign branch
|
402
|
+
[96476467b140]
|
403
|
+
|
404
|
+
* Prepare feature branch for merging
|
405
|
+
[66d0f716f810] <20_redesign>
|
406
|
+
|
407
|
+
* History.md, Manifest.txt, README.md, README.textile, Rakefile,
|
408
|
+
Rakefile.local, tests/TEMPLATE.rb.tpl, tests/en/wordnet.tests.rb,
|
409
|
+
tests/lingtestcase.rb:
|
410
|
+
Converted to Hoe for build stuff, cleanup.
|
411
|
+
[8d3c36d88c00] <20_redesign>
|
412
|
+
|
413
|
+
2010-12-15 Michael Granger <ged@FaerieMUD.org>
|
414
|
+
|
415
|
+
* ChangeLog, Rakefile, lib/linguistics/en/wordnet.rb, project.yml,
|
416
|
+
spec/lib/helpers.rb, spec/linguistics/en/articles_spec.rb,
|
417
|
+
spec/linguistics/en/linkparser_spec.rb,
|
418
|
+
spec/linguistics/en/pluralization_spec.rb,
|
419
|
+
spec/linguistics/en/wordnet_spec.rb, tests/en/lprintf.tests.rb,
|
420
|
+
tests/en/titlecase.tests.rb, utils.rb:
|
421
|
+
Updated packaging, updated WordNet module, lprintf().
|
422
|
+
[d229cea7dc21] <20_redesign>
|
423
|
+
|
424
|
+
2010-12-10 Michael Granger <ged@FaerieMUD.org>
|
425
|
+
|
426
|
+
* lib/linguistics/en.rb, lib/linguistics/en/articles.rb,
|
427
|
+
lib/linguistics/en/pluralization.rb, spec/linguistics/en_spec.rb,
|
428
|
+
tests/en/inflect.tests.rb, tests/en/linkparser.tests.rb:
|
429
|
+
Cleaned up and wrote initial specs for Linguistics::EN.lprintf and
|
430
|
+
related methods.
|
431
|
+
[7732c8042c91] <20_redesign>
|
432
|
+
|
433
|
+
2010-12-09 Michael Granger <ged@FaerieMUD.org>
|
434
|
+
|
435
|
+
* spec/lib/helpers.rb, spec/linguistics/en/participles_spec.rb:
|
436
|
+
Clean up spec helper, and fix participles spec.
|
437
|
+
[7d55210ecece] <20_redesign>
|
438
|
+
|
439
|
+
2010-10-19 Michael Granger <ged@FaerieMUD.org>
|
440
|
+
|
441
|
+
* lib/linguistics/en.rb:
|
442
|
+
Removed stuff that's been moved out into addons.
|
443
|
+
[825169749f08] <20_redesign>
|
444
|
+
|
445
|
+
* lib/linguistics/en/titlecase.rb,
|
446
|
+
spec/linguistics/en/titlecase_spec.rb:
|
447
|
+
Split out titlecase addon
|
448
|
+
[807a0c6f11b3] <20_redesign>
|
449
|
+
|
450
|
+
* lib/linguistics/en/linkparser.rb,
|
451
|
+
spec/linguistics/en/linkparser_spec.rb:
|
452
|
+
Updated linkparser addon and added a rudimentary spec
|
453
|
+
[49c39e22abbc] <20_redesign>
|
454
|
+
|
455
|
+
* lib/linguistics/en/participles.rb,
|
456
|
+
spec/linguistics/en/participles_spec.rb:
|
457
|
+
Split out present participles
|
458
|
+
[59b3b444f3e2] <20_redesign>
|
459
|
+
|
460
|
+
* lib/linguistics/en/articles.rb,
|
461
|
+
spec/linguistics/en/articles_spec.rb:
|
462
|
+
Split out indefinite article functions
|
463
|
+
[29c807245ef0] <20_redesign>
|
464
|
+
|
465
|
+
* lib/linguistics/en/conjunctions.rb,
|
466
|
+
spec/linguistics/en/conjunctions_spec.rb:
|
467
|
+
Fixed conjunctions.
|
468
|
+
[5b9b21692df8] <20_redesign>
|
469
|
+
|
470
|
+
2010-10-18 Michael Granger <ged@FaerieMUD.org>
|
471
|
+
|
472
|
+
* README.textile:
|
473
|
+
Updating README for the 2.0 branch
|
474
|
+
[9becaae21231] <20_redesign>
|
475
|
+
|
476
|
+
* .hgignore, .irbrc, README, README.english, README.textile, Rakefile,
|
477
|
+
examples/generalize_sentence.rb, lib/linguistics.rb,
|
478
|
+
lib/linguistics/en.rb, lib/linguistics/en/conjunctions.rb,
|
479
|
+
lib/linguistics/en/infinitive.rb, lib/linguistics/en/infinitives.rb,
|
480
|
+
lib/linguistics/en/linkparser.rb, lib/linguistics/en/numbers.rb,
|
481
|
+
lib/linguistics/en/pluralization.rb, lib/linguistics/en/wordnet.rb,
|
482
|
+
lib/linguistics/inflector.rb, lib/linguistics/iso639.rb,
|
483
|
+
lib/linguistics/mixins.rb, lib/linguistics/utils.rb, project.yml,
|
484
|
+
spec/lib/helpers.rb, spec/linguistics/en/conjunctions_spec.rb,
|
485
|
+
spec/linguistics/en/infinitive_spec.rb,
|
486
|
+
spec/linguistics/en/infinitives_spec.rb,
|
487
|
+
spec/linguistics/en/numbers_spec.rb,
|
488
|
+
spec/linguistics/en/pluralization_spec.rb,
|
489
|
+
spec/linguistics/en_spec.rb, spec/linguistics/iso639_spec.rb,
|
490
|
+
spec/linguistics_spec.rb, tests/en/lprintf.tests.rb:
|
491
|
+
Checkpoint commit; got pluralization, numbers, and indefinite
|
492
|
+
articles working
|
493
|
+
[62bcee114ee2] <20_redesign>
|
494
|
+
|
495
|
+
2010-03-01 Michael Granger <ged@FaerieMUD.org>
|
496
|
+
|
497
|
+
* Rakefile.local, experiments/gen_numwords_specs.rb,
|
498
|
+
lib/linguistics.rb, lib/linguistics/en.rb,
|
499
|
+
lib/linguistics/en/conjunctions.rb, lib/linguistics/en/numbers.rb,
|
500
|
+
lib/linguistics/en/pluralization.rb, lib/linguistics/inflector.rb,
|
501
|
+
lib/linguistics/iso639.rb, lib/linguistics/mixins.rb,
|
502
|
+
lib/linguistics/utils.rb, spec/lib/constants.rb,
|
503
|
+
spec/lib/helpers.rb, spec/linguistics/en/conjunctions_spec.rb,
|
504
|
+
spec/linguistics/en/numbers_spec.rb, spec/linguistics_spec.rb,
|
505
|
+
tests/en/infinitive.tests.rb, tests/en/lafcadio.tests.rb:
|
506
|
+
Checkpoint commit
|
507
|
+
[1a47a0c3b20e] <20_redesign>
|
508
|
+
|
509
|
+
2009-11-06 Michael Granger <ged@FaerieMUD.org>
|
510
|
+
|
511
|
+
* LICENSE, README, Rakefile, lib/linguistics.rb,
|
512
|
+
lib/linguistics/en.rb, lib/linguistics/en/conjunctions.rb,
|
513
|
+
lib/linguistics/en/infinitive.rb, lib/linguistics/en/linkparser.rb,
|
514
|
+
lib/linguistics/en/pluralization.rb, lib/linguistics/iso639.rb,
|
515
|
+
project.yml, spec/linguistics/en/conjunctions_spec.rb,
|
516
|
+
spec/linguistics/en/infinitive_spec.rb,
|
517
|
+
spec/linguistics/en/pluralization_spec.rb,
|
518
|
+
spec/linguistics/en_spec.rb, spec/linguistics/iso639_spec.rb,
|
519
|
+
spec/linguistics_spec.rb, tests/en/inflect.tests.rb:
|
520
|
+
Checkpoint commit
|
521
|
+
[7e0215e8393d] <20_redesign>
|
522
|
+
|
523
|
+
2010-10-18 Michael Granger <ged@FaerieMUD.org>
|
524
|
+
|
525
|
+
* lib/linguistics.rb:
|
526
|
+
Catch github master up to current version
|
527
|
+
[bce7c8390371]
|
528
|
+
|
529
|
+
2009-12-17 Michael Granger <ged@FaerieMUD.org>
|
530
|
+
|
531
|
+
* lib/linguistics/iso639.rb, lib/linguistics/languagetags.tb:
|
532
|
+
Started work on a modern replacement for the old iso639 language
|
533
|
+
tags.
|
534
|
+
[9a88d4b05cde]
|
535
|
+
|
536
|
+
2009-11-17 Michael Granger <ged@FaerieMUD.org>
|
537
|
+
|
538
|
+
* .hgtags:
|
539
|
+
Added tag 1.0.8 for changeset da353c888ad4
|
540
|
+
[c1dbba0aa071]
|
541
|
+
|
542
|
+
* .hgsigs:
|
543
|
+
Added signature for changeset 8029de2f9c60
|
544
|
+
[6d868ec5cb4a]
|
545
|
+
|
546
|
+
* Rakefile, lib/linguistics.rb:
|
547
|
+
Updated build system, bump version to 1.0.8.
|
548
|
+
[dbaa888d917d]
|
549
|
+
|
550
|
+
* lib/linguistics.rb, lib/linguistics/en.rb,
|
551
|
+
lib/linguistics/en/infinitive.rb, lib/linguistics/en/linkparser.rb,
|
552
|
+
lib/linguistics/en/wordnet.rb, lib/linguistics/iso639.rb:
|
553
|
+
Fixes for 1.9.1 and license consistency update.
|
554
|
+
[1f790547308c]
|
555
|
+
|
556
|
+
2009-11-06 Michael Granger <ged@FaerieMUD.org>
|
557
|
+
|
558
|
+
* .hgtags:
|
559
|
+
Added tag 1.0.7 for changeset 5f4fa2c136c7
|
560
|
+
[ceec0a668f35]
|
561
|
+
|
562
|
+
* .hgsigs:
|
563
|
+
Added signature for changeset bebbaa868974
|
564
|
+
[3cacefd5c621]
|
565
|
+
|
566
|
+
* .hgtags:
|
567
|
+
Removed tag 1.0.7
|
568
|
+
[5cf0c9805d7b]
|
569
|
+
|
570
|
+
* .hgignore, Rakefile:
|
571
|
+
Updated build system/gem; migrating to gemcutter.
|
572
|
+
[1a72526b35e3]
|
573
|
+
|
574
|
+
* .hgtags:
|
575
|
+
Added tag 1.0.7 for changeset 1e029bfd9ead
|
576
|
+
[b3ec1e58eb5c]
|
577
|
+
|
578
|
+
* .hgsigs:
|
579
|
+
Added signature for changeset 401a04c4cf43
|
580
|
+
[7685072ca4eb]
|
581
|
+
|
582
|
+
* lib/linguistics.rb:
|
583
|
+
Bumping version
|
584
|
+
[a7b962d3fea1]
|
585
|
+
|
586
|
+
2009-08-15 Michael Granger <ged@FaerieMUD.org>
|
587
|
+
|
588
|
+
* README, Rakefile, project.yml:
|
589
|
+
Updated build system
|
590
|
+
[ad39f916e1ac]
|
591
|
+
|
592
|
+
2008-12-23 Michael Granger <ged@FaerieMUD.org>
|
593
|
+
|
594
|
+
* LICENSE, Rakefile, lib/linguistics/en/wordnet.rb, project.yml:
|
595
|
+
* Updated build system.
|
596
|
+
* Fixed copyright years in the LICENSE file
|
597
|
+
* Cleanup of the wordnet integration source.
|
598
|
+
[de5b2668076b]
|
599
|
+
|
600
|
+
2008-09-06 Michael Granger <ged@FaerieMUD.org>
|
601
|
+
|
602
|
+
* .cvsignore, .gemspec, Artistic, ChangeLog, LICENSE,
|
603
|
+
Linguistics.tmproj, MANIFEST, README, Rakefile, TODO,
|
604
|
+
docs/.cvsignore, docs/CATALOG, docs/makedocs.rb, install.rb,
|
605
|
+
lib/linguistics/en/wordnet.rb, makedist.rb, misc/rake/helpers.rb,
|
606
|
+
misc/rake/svn.rb, misc/rake/verifytask.rb, project.yml,
|
607
|
+
redist/crosscase.rb, test.rb, tests/en/infinitive.tests.rb,
|
608
|
+
utils.rb:
|
609
|
+
Converted to a new build system.
|
610
|
+
[3146f8325b6b]
|
611
|
+
|
612
|
+
2008-01-30 Michael Granger <ged@FaerieMUD.org>
|
613
|
+
|
614
|
+
* Linguistics.tmproj, Rakefile, lib/linguistics.rb,
|
615
|
+
lib/linguistics/iso639.rb, misc/rake/helpers.rb, misc/rake/svn.rb,
|
616
|
+
misc/rake/verifytask.rb, spec/linguistics/en_spec.rb,
|
617
|
+
spec/linguistics/iso639_spec.rb, spec/linguistics_spec.rb,
|
618
|
+
tests/en/conjunction.tests.rb, tests/use.tests.rb:
|
619
|
+
Started update of specs and build system
|
620
|
+
[80d9e3e992f2]
|
621
|
+
|
622
|
+
2007-07-25 Michael Granger <ged@FaerieMUD.org>
|
623
|
+
|
624
|
+
* examples/generalize_sentence.rb:
|
625
|
+
Adding examples directory
|
626
|
+
[6dbf241de80e]
|
627
|
+
|
628
|
+
2007-06-13 Michael Granger <ged@FaerieMUD.org>
|
629
|
+
|
630
|
+
* .gemspec, .irbrc, ChangeLog, Linguistics.tmproj, README,
|
631
|
+
docs/makedocs.rb, install.rb, lib/linguistics.rb,
|
632
|
+
lib/linguistics/en.rb, lib/linguistics/en/linkparser.rb,
|
633
|
+
lib/linguistics/en/wordnet.rb, makedist.rb, test.rb,
|
634
|
+
tests/en/conjunction.tests.rb, tests/en/inflect.tests.rb,
|
635
|
+
tests/en/lafcadio.tests.rb, tests/en/linkparser.tests.rb,
|
636
|
+
tests/en/lprintf.tests.rb, tests/en/titlecase.tests.rb,
|
637
|
+
tests/en/wordnet.tests.rb, tests/lingtestcase.rb,
|
638
|
+
tests/use.tests.rb, utils.rb:
|
639
|
+
Checkpoint commit
|
640
|
+
[42e9f1f93182]
|
641
|
+
|
642
|
+
2006-07-11 Michael Granger <ged@FaerieMUD.org>
|
643
|
+
|
644
|
+
* docs/CATALOG:
|
645
|
+
* Updating docs/CATALOG with new CVS/server info
|
646
|
+
[ded0d54330b2]
|
647
|
+
|
648
|
+
* lib/linguistics/en.rb, tests/en/conjunction.tests.rb:
|
649
|
+
* Fix #conjunction with :penultimate => false for lists of three.
|
650
|
+
[5848ab100618]
|
651
|
+
|
652
|
+
* lib/linguistics/en.rb, tests/en/inflect.tests.rb:
|
653
|
+
* Fixed the ':and' setting in EN#numwords. Closes #8.
|
654
|
+
[af612577298b]
|
655
|
+
|
656
|
+
2006-04-30 Michael Granger <ged@FaerieMUD.org>
|
657
|
+
|
658
|
+
* Linguistics.tmproj, experiments/conjunct-with-block.rb,
|
659
|
+
lib/linguistics.rb, lib/linguistics/en.rb,
|
660
|
+
lib/linguistics/en/wordnet.rb, tests/en/conjunction.tests.rb,
|
661
|
+
tests/en/inflect.tests.rb, utils.rb:
|
662
|
+
* Added optional block to #conjuction to allow inline conversion of
|
663
|
+
joined objects.
|
664
|
+
* Added lprintf for injecting linguistics into formatted strings.
|
665
|
+
[ff558e233f88]
|
666
|
+
|
667
|
+
2005-11-04 Michael Granger <ged@FaerieMUD.org>
|
668
|
+
|
669
|
+
* experiments/api.rb, experiments/lprintf.rb:
|
670
|
+
* Updated api experiment so that it actually runs by commenting out
|
671
|
+
the leftover Perl stuff.
|
672
|
+
* Added lprintf() experiment.
|
673
|
+
[ac5fffe6e945]
|
674
|
+
|
675
|
+
2005-10-30 Michael Granger <ged@FaerieMUD.org>
|
676
|
+
|
677
|
+
* lib/linguistics.rb:
|
678
|
+
- Added autoloading of language constants.
|
679
|
+
[c66a6b9f665e]
|
680
|
+
|
681
|
+
2005-10-14 Michael Granger <ged@FaerieMUD.org>
|
682
|
+
|
683
|
+
* docs/makedocs.rb, install.rb, makedist.rb, utils.rb:
|
684
|
+
- Updated to latest project-utils.
|
685
|
+
[eed9764be0e0]
|
686
|
+
|
687
|
+
* lib/linguistics/en.rb:
|
688
|
+
- Replaced 'hash.dup.update' with 'hash.merge'.
|
689
|
+
[c5d222b0c8af]
|
690
|
+
|
691
|
+
2005-07-14 Michael Granger <ged@FaerieMUD.org>
|
692
|
+
|
693
|
+
* ChangeLog:
|
694
|
+
Updated changelog
|
695
|
+
[1d74e8e6e10c]
|
696
|
+
|
697
|
+
2005-07-13 Michael Granger <ged@FaerieMUD.org>
|
698
|
+
|
699
|
+
* - Ignored html directory.
|
700
|
+
[da97dc77399f]
|
701
|
+
|
702
|
+
* docs/makedocs.rb, makedist.rb, utils.rb:
|
703
|
+
- Merged changes from project-utils.
|
704
|
+
[fd47f6963d46]
|
705
|
+
|
706
|
+
* .gemspec:
|
707
|
+
Initial checkin. Fixes #3.
|
708
|
+
[9cf0eb3130ee]
|
709
|
+
|
710
|
+
* experiments/api.rb:
|
711
|
+
- Set svn:keyword
|
712
|
+
[f9847dd70756]
|
713
|
+
|
714
|
+
* lib/linguistics.rb, lib/linguistics/en.rb,
|
715
|
+
lib/linguistics/en/infinitive.rb, redist/crosscase.rb,
|
716
|
+
redist/hashslice.rb, tests/en/lafcadio.tests.rb,
|
717
|
+
tests/en/linkparser.tests.rb, tests/en/titlecase.tests.rb,
|
718
|
+
tests/lingtestcase.rb, tests/use.tests.rb:
|
719
|
+
- Fixed up subversion constants
|
720
|
+
- Merged contributions from Francis Hwang <sera@fhwang.net>
|
721
|
+
(#camel_case_to_english, #english_to_camel_case, #proper_noun).
|
722
|
+
Closes #2
|
723
|
+
- Set svn:keyword
|
724
|
+
[fd6cab4f95c3]
|
725
|
+
|
726
|
+
2013-09-16 Michael Granger <ged@FaerieMUD.org>
|
727
|
+
|
728
|
+
* .hgignore, .rvm.gems, .tm_properties, Gemfile, Rakefile:
|
729
|
+
Updating dependencies, adding Gemfile
|
730
|
+
[ae664c88ce95]
|
731
|
+
|
732
|
+
2013-02-27 Michael Granger <ged@FaerieMUD.org>
|
733
|
+
|
734
|
+
* .hgtags:
|
735
|
+
Added tag v2.0.2 for changeset a516c984a9a1
|
736
|
+
[381415062e12]
|
737
|
+
|
738
|
+
* .hgsigs:
|
739
|
+
Added signature for changeset d2eeec0b7832
|
740
|
+
[a516c984a9a1] [v2.0.2]
|
741
|
+
|
742
|
+
* History.rdoc, lib/linguistics.rb:
|
743
|
+
Bump the patch version, update history.
|
744
|
+
[d2eeec0b7832]
|
745
|
+
|
746
|
+
* .rvmrc, lib/linguistics.rb:
|
747
|
+
Fix for Ruby 2: don't memoize the inflector.
|
748
|
+
[1b4ebdf345e6]
|
749
|
+
|
750
|
+
2013-02-25 Michael Granger <ged@FaerieMUD.org>
|
751
|
+
|
752
|
+
* .hgtags:
|
753
|
+
Added tag v2.0.1 for changeset d8d00bf937f2
|
754
|
+
[a2394c2f784c]
|
755
|
+
|
756
|
+
* .hgsigs:
|
757
|
+
Added signature for changeset 5240c28c80bd
|
758
|
+
[d8d00bf937f2] [v2.0.1]
|
759
|
+
|
760
|
+
* History.rdoc, lib/linguistics.rb:
|
761
|
+
Bump patch version, update history.
|
762
|
+
[5240c28c80bd]
|
763
|
+
|
1
764
|
2012-12-18 Michael Granger <ged@FaerieMUD.org>
|
2
765
|
|
3
766
|
* Rakefile:
|
4
767
|
Add missing loggability dependency to the gem (fixes #3).
|
5
|
-
[49fe3002596e]
|
768
|
+
[49fe3002596e]
|
6
769
|
|
7
770
|
2012-11-26 Michael Granger <ged@FaerieMUD.org>
|
8
771
|
|
@@ -11,7 +774,7 @@
|
|
11
774
|
spec/linguistics/en/pluralization_spec.rb:
|
12
775
|
Adding some monkeypatch specs (refs #1), fixing some edge-case
|
13
776
|
pluralizations.
|
14
|
-
[0b5177d918d9]
|
777
|
+
[0b5177d918d9]
|
15
778
|
|
16
779
|
2012-10-10 Michael Granger <ged@FaerieMUD.org>
|
17
780
|
|
@@ -263,7 +1026,7 @@
|
|
263
1026
|
|
264
1027
|
* examples/klingon.rb:
|
265
1028
|
Better comments for the klingon example
|
266
|
-
[6ba52cffd4f6]
|
1029
|
+
[6ba52cffd4f6]
|
267
1030
|
|
268
1031
|
* README.md, examples/klingon.rb:
|
269
1032
|
Updating the "how to add a language module" section of the README
|
@@ -752,9 +1515,8 @@
|
|
752
1515
|
- Calls to #synset no longer trap parse errors. This was done for
|
753
1516
|
two reasons:
|
754
1517
|
|
755
|
-
1. If the WordNet doesn't load, WordNet::ParseError is an
|
756
|
-
|
757
|
-
error message.
|
1518
|
+
1. If the WordNet doesn't load, WordNet::ParseError is an undefined
|
1519
|
+
constant, so the function fails with a semi-ambiguous error message.
|
758
1520
|
|
759
1521
|
2. The user of the library might wish to handle the parse failure
|
760
1522
|
herself.
|
@@ -839,9 +1601,9 @@
|
|
839
1601
|
- Calls to #linkParse no longer trap parse errors. This was done for
|
840
1602
|
two reasons:
|
841
1603
|
|
842
|
-
1. If the LinkParser module doesn't load, LinkParser::ParseError
|
843
|
-
|
844
|
-
|
1604
|
+
1. If the LinkParser module doesn't load, LinkParser::ParseError is
|
1605
|
+
an undefined constant, so the function fails with a semi- ambiguous
|
1606
|
+
error message.
|
845
1607
|
|
846
1608
|
2. The user of the library might wish to handle the parse failure
|
847
1609
|
herself.
|
@@ -878,8 +1640,8 @@
|
|
878
1640
|
|
879
1641
|
* tests/lingtestcase.rb:
|
880
1642
|
- Added a dummy test so if the tests for optional modules can't be
|
881
|
-
run (because the modules on which they depend aren't installed),
|
882
|
-
|
1643
|
+
run (because the modules on which they depend aren't installed), it
|
1644
|
+
doesn't count as a failure because there were no tests.
|
883
1645
|
[75be1895f357]
|
884
1646
|
|
885
1647
|
* tests/TEMPLATE.rb.tpl:
|