linguistics 1.0.9 → 2.0.0

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.
Files changed (69) hide show
  1. data.tar.gz.sig +0 -0
  2. data/.gemtest +0 -0
  3. data/ChangeLog +849 -342
  4. data/History.rdoc +11 -0
  5. data/LICENSE +9 -9
  6. data/Manifest.txt +44 -0
  7. data/README.rdoc +226 -0
  8. data/Rakefile +32 -349
  9. data/examples/endocs.rb +272 -0
  10. data/examples/generalize_sentence.rb +2 -1
  11. data/examples/klingon.rb +22 -0
  12. data/lib/linguistics.rb +130 -292
  13. data/lib/linguistics/en.rb +337 -1628
  14. data/lib/linguistics/en/articles.rb +138 -0
  15. data/lib/linguistics/en/conjugation.rb +2245 -0
  16. data/lib/linguistics/en/conjunctions.rb +202 -0
  17. data/lib/linguistics/en/{infinitive.rb → infinitives.rb} +41 -55
  18. data/lib/linguistics/en/linkparser.rb +41 -49
  19. data/lib/linguistics/en/numbers.rb +483 -0
  20. data/lib/linguistics/en/participles.rb +33 -0
  21. data/lib/linguistics/en/pluralization.rb +810 -0
  22. data/lib/linguistics/en/stemmer.rb +75 -0
  23. data/lib/linguistics/en/titlecase.rb +121 -0
  24. data/lib/linguistics/en/wordnet.rb +63 -97
  25. data/lib/linguistics/inflector.rb +89 -0
  26. data/lib/linguistics/iso639.rb +534 -448
  27. data/lib/linguistics/languagebehavior.rb +36 -0
  28. data/lib/linguistics/monkeypatches.rb +42 -0
  29. data/spec/lib/constants.rb +15 -0
  30. data/spec/lib/helpers.rb +38 -0
  31. data/spec/linguistics/en/articles_spec.rb +797 -0
  32. data/spec/linguistics/en/conjugation_spec.rb +2083 -0
  33. data/spec/linguistics/en/conjunctions_spec.rb +154 -0
  34. data/spec/linguistics/en/infinitives_spec.rb +518 -0
  35. data/spec/linguistics/en/linkparser_spec.rb +66 -0
  36. data/spec/linguistics/en/numbers_spec.rb +1295 -0
  37. data/spec/linguistics/en/participles_spec.rb +55 -0
  38. data/spec/linguistics/en/pluralization_spec.rb +4636 -0
  39. data/spec/linguistics/en/stemmer_spec.rb +72 -0
  40. data/spec/linguistics/en/titlecase_spec.rb +841 -0
  41. data/spec/linguistics/en/wordnet_spec.rb +85 -0
  42. data/spec/linguistics/en_spec.rb +45 -167
  43. data/spec/linguistics/inflector_spec.rb +40 -0
  44. data/spec/linguistics/iso639_spec.rb +49 -53
  45. data/spec/linguistics/monkeypatches_spec.rb +40 -0
  46. data/spec/linguistics_spec.rb +46 -76
  47. metadata +241 -113
  48. metadata.gz.sig +0 -0
  49. data/README +0 -166
  50. data/README.english +0 -245
  51. data/rake/191_compat.rb +0 -26
  52. data/rake/dependencies.rb +0 -76
  53. data/rake/documentation.rb +0 -123
  54. data/rake/helpers.rb +0 -502
  55. data/rake/hg.rb +0 -318
  56. data/rake/manual.rb +0 -787
  57. data/rake/packaging.rb +0 -129
  58. data/rake/publishing.rb +0 -341
  59. data/rake/style.rb +0 -62
  60. data/rake/svn.rb +0 -668
  61. data/rake/testing.rb +0 -152
  62. data/rake/verifytask.rb +0 -64
  63. data/tests/en/infinitive.tests.rb +0 -207
  64. data/tests/en/inflect.tests.rb +0 -1389
  65. data/tests/en/lafcadio.tests.rb +0 -77
  66. data/tests/en/linkparser.tests.rb +0 -42
  67. data/tests/en/lprintf.tests.rb +0 -77
  68. data/tests/en/titlecase.tests.rb +0 -73
  69. data/tests/en/wordnet.tests.rb +0 -95
data.tar.gz.sig CHANGED
Binary file
data/.gemtest ADDED
File without changes
data/ChangeLog CHANGED
@@ -1,468 +1,975 @@
1
- 155[github/master,tip][master] 80e1b8080912 2011-08-16 11:41 -0700 ged
2
- Comment cleanup
1
+ 2012-08-06 Michael Granger <ged@FaerieMUD.org>
2
+
3
+ * .rvm.gems, .tm_properties, Manifest.txt, README.rdoc, Rakefile,
4
+ lib/linguistics.rb, lib/linguistics/en/conjugation.rb,
5
+ lib/linguistics/en/wordnet.rb, lib/linguistics/utils.rb,
6
+ spec/lib/helpers.rb, spec/linguistics/en/articles_spec.rb,
7
+ spec/linguistics/en/conjugation_spec.rb,
8
+ spec/linguistics/en/conjunctions_spec.rb,
9
+ spec/linguistics/en/infinitives_spec.rb,
10
+ spec/linguistics/en/linkparser_spec.rb,
11
+ spec/linguistics/en/numbers_spec.rb,
12
+ spec/linguistics/en/participles_spec.rb,
13
+ spec/linguistics/en/pluralization_spec.rb,
14
+ spec/linguistics/en/titlecase_spec.rb,
15
+ spec/linguistics/en/wordnet_spec.rb, spec/linguistics/en_spec.rb,
16
+ spec/linguistics_spec.rb:
17
+ Prepping for 2.x release
18
+ [a01e8cf31ac3] [tip]
19
+
20
+ * History.rdoc, LICENSE, Manifest.txt, lib/linguistics/en.rb,
21
+ lib/linguistics/en/articles.rb, lib/linguistics/en/conjugation.rb,
22
+ lib/linguistics/en/conjunctions.rb,
23
+ lib/linguistics/en/infinitives.rb, lib/linguistics/en/linkparser.rb,
24
+ lib/linguistics/en/numbers.rb, lib/linguistics/en/participles.rb,
25
+ lib/linguistics/en/pluralization.rb,
26
+ lib/linguistics/en/titlecase.rb, lib/linguistics/en/wordnet.rb,
27
+ spec/linguistics/en/wordnet_spec.rb:
28
+ Prepping for release
29
+ [5d7f373a901f]
3
30
 
4
- 154 6d1c9c82437d 2011-07-12 11:05 -0700 ged
5
- Removed the giant debugging log dump in favor of short diagnostics.
31
+ 2012-04-16 Michael Granger <ged@FaerieMUD.org>
32
+
33
+ * .pryrc, .rvm.gems, .rvmrc, History.md, History.rdoc, README.md,
34
+ README.rdoc, Rakefile:
35
+ Update build environment.
36
+ [677cc65003b4]
37
+
38
+ 2011-09-01 Michael Granger <ged@FaerieMUD.org>
6
39
 
7
- 153 1d2be604d02c 2011-07-12 10:56 -0700 ged
8
- Updated linkparser dependency to the latest release
40
+ * .hgtags:
41
+ Added tag v1.0.9 for changeset 5e2a8b076d59
42
+ [2737987d5471] <fixes_for_1.0>
9
43
 
10
- 152 ac3dba55f167 2011-07-12 10:56 -0700 ged
11
- Turn off debugging output in the conjugation spec
44
+ * .hgsigs:
45
+ Added signature for changeset 48267fd4b170
46
+ [5e2a8b076d59] [v1.0.9] <fixes_for_1.0>
12
47
 
13
- 151 ee0eb694852b 2011-07-12 10:47 -0700 ged
14
- Adding English verb conjugation via Robert Berry (bdigital)'s fork on Github.
48
+ * ChangeLog, Rakefile, lib/linguistics.rb, lib/linguistics/en.rb,
49
+ project.yml:
50
+ Bugfix for Linguistics 1: Linguistics::EN.ordinate
51
+ [48267fd4b170] <fixes_for_1.0>
15
52
 
16
- 150 9fc5ac3506f8 2011-07-12 08:43 -0700 ged
17
- Updated for recent versions of RSpec.
53
+ 2011-08-16 Michael Granger <ged@FaerieMUD.org>
18
54
 
19
- 149 967cb7c12329 2011-07-11 20:38 -0700 ged
20
- De-YARD.
55
+ * lib/linguistics/en/wordnet.rb, lib/linguistics/utils.rb:
56
+ Comment cleanup
57
+ [80e1b8080912]
21
58
 
22
- 148 e41a2fa5315e 2011-02-07 11:21 -0800 ged
23
- Reordering Manifest to make check_manifest work.
59
+ 2011-07-12 Michael Granger <ged@FaerieMUD.org>
24
60
 
25
- 147 d4a5f1f59053 2011-02-07 11:12 -0800 ged
26
- Adding a project .rvmrc to switch to 1.9.2
61
+ * lib/linguistics/en/conjugation.rb:
62
+ Removed the giant debugging log dump in favor of short diagnostics.
63
+ [6d1c9c82437d]
64
+
65
+ * Rakefile:
66
+ Updated linkparser dependency to the latest release
67
+ [1d2be604d02c]
68
+
69
+ * spec/linguistics/en/conjugation_spec.rb:
70
+ Turn off debugging output in the conjugation spec
71
+ [ac3dba55f167]
72
+
73
+ * README.md, lib/linguistics/en.rb, lib/linguistics/en/conjugation.rb,
74
+ spec/linguistics/en/conjugation_spec.rb:
75
+ Adding English verb conjugation via Robert Berry (bdigital)'s fork
76
+ on Github.
77
+ [ee0eb694852b]
78
+
79
+ * Rakefile, spec/lib/helpers.rb:
80
+ Updated for recent versions of RSpec.
81
+ [9fc5ac3506f8]
82
+
83
+ 2011-07-11 Michael Granger <ged@FaerieMUD.org>
84
+
85
+ * .hgignore, Rakefile:
86
+ De-YARD.
87
+ [967cb7c12329]
88
+
89
+ 2011-02-07 Michael Granger <ged@FaerieMUD.org>
90
+
91
+ * Manifest.txt:
92
+ Reordering Manifest to make check_manifest work.
93
+ [e41a2fa5315e]
94
+
95
+ * .rvmrc:
96
+ Adding a project .rvmrc to switch to 1.9.2
97
+ [d4a5f1f59053]
98
+
99
+ 2011-02-05 Michael Granger <ged@FaerieMUD.org>
100
+
101
+ * spec/linguistics/en/numbers_spec.rb:
102
+ Merged with 144:0218912e346c
103
+ [077cc5f72d2e]
104
+
105
+ * spec/linguistics/en/numbers_spec.rb:
106
+ Change the numbers spec to use the extension predicate
107
+ [cb2a12c6752c]
108
+
109
+ 2011-01-19 Michael Granger <ged@FaerieMUD.org>
110
+
111
+ * spec/linguistics/en/numbers_spec.rb:
112
+ Fix the numwords spec
113
+ [0218912e346c]
114
+
115
+ 2011-01-14 Michael Granger <ged@FaerieMUD.org>
27
116
 
28
- 146:145,144 077cc5f72d2e 2011-02-05 08:42 -0800 ged
29
- Merged with 144:0218912e346c
117
+ * lib/linguistics/en.rb, spec/linguistics/en_spec.rb:
118
+ Adding Linguistics::EN.has_extension? for feature-testing.
119
+ [d2266b5f6c73]
30
120
 
31
- 145:143 cb2a12c6752c 2011-02-05 08:33 -0800 ged
32
- Change the numbers spec to use the extension predicate
121
+ 2011-01-13 Michael Granger <ged@FaerieMUD.org>
33
122
 
34
- 144 0218912e346c 2011-01-19 10:20 -0800 ged
35
- Fix the numwords spec
123
+ * lib/linguistics/en/titlecase.rb,
124
+ spec/linguistics/en/titlecase_spec.rb:
125
+ Add specs (and fixed bugs they uncovered) for EN#to_camel_case and
126
+ EN#un_camel_case
127
+ [117e2904e95e]
36
128
 
37
- 143 d2266b5f6c73 2011-01-14 22:06 -0800 ged
38
- Adding Linguistics::EN.has_extension? for feature-testing.
129
+ 2011-01-11 Michael Granger <ged@FaerieMUD.org>
39
130
 
40
- 142 117e2904e95e 2011-01-13 08:16 -0800 ged
41
- Add specs (and fixed bugs they uncovered) for EN#to_camel_case and EN#un_camel_case
131
+ * lib/linguistics/en/wordnet.rb:
132
+ Fix shadowed variables.
133
+ [7502d8cc69cf]
42
134
 
43
- 141 7502d8cc69cf 2011-01-11 10:52 -0800 ged
44
- Fix shadowed variables.
135
+ * Manifest.txt:
136
+ Updated the release manifest
137
+ [166e1d9a20dd]
45
138
 
46
- 140 166e1d9a20dd 2011-01-11 08:26 -0800 ged
47
- Updated the release manifest
139
+ * Manifest.txt:
140
+ Updating the manifest.
141
+ [12ebb23b545a]
48
142
 
49
- 139 12ebb23b545a 2011-01-11 07:37 -0800 ged
50
- Updating the manifest.
143
+ * Rakefile:
144
+ Update the Rakefile
145
+ [63386a913414]
51
146
 
52
- 138 63386a913414 2011-01-11 07:35 -0800 ged
53
- Update the Rakefile
147
+ * project.yml:
148
+ Removing old project file
149
+ [880dfd357afb]
54
150
 
55
- 137 880dfd357afb 2011-01-11 07:32 -0800 ged
56
- Removing old project file
151
+ 2011-01-10 Michael Granger <ged@FaerieMUD.org>
57
152
 
58
- 136[github/redesign_for_2.0] 6ba52cffd4f6 2011-01-10 10:36 -0800 ged
59
- Better comments for the klingon example
153
+ * examples/klingon.rb:
154
+ Better comments for the klingon example
155
+ [6ba52cffd4f6]
60
156
 
61
- 135 bd49f872dcef 2011-01-10 10:28 -0800 ged
62
- Updating the "how to add a language module" section of the README
157
+ * README.md, examples/klingon.rb:
158
+ Updating the "how to add a language module" section of the README
159
+ [bd49f872dcef]
63
160
 
64
- 134 6993866cb5a5 2011-01-10 10:28 -0800 ged
65
- Adding some more test coverage
161
+ * spec/linguistics/en_spec.rb, spec/linguistics/inflector_spec.rb,
162
+ spec/linguistics/iso639_spec.rb:
163
+ Adding some more test coverage
164
+ [6993866cb5a5]
165
+
166
+ * lib/linguistics/en.rb:
167
+ Removed the explicit #language method, as it's now implemented in
168
+ the inflector
169
+ [a6e22bd4d5c4]
170
+
171
+ * lib/linguistics.rb, lib/linguistics/inflector.rb,
172
+ lib/linguistics/iso639.rb:
173
+ Fixed a bug in inflector construction for languages with only a
174
+ 3-character code
175
+ [81360f6cb3f1]
176
+
177
+ * lib/linguistics.rb, lib/linguistics/monkeypatches.rb,
178
+ spec/linguistics/monkeypatches_spec.rb:
179
+ Splitting out monkeypatches into a separate file
180
+ [df32ab4ec78f]
181
+
182
+ * lib/linguistics/mixins.rb, spec/linguistics/mixins_spec.rb:
183
+ Removing unused mixin code
184
+ [eb91956633ba]
185
+
186
+ * lib/linguistics/languagebehavior.rb:
187
+ Added a RSpec 2 shared behavior for testing language modules
188
+ [77ff43777256]
189
+
190
+ * Rakefile:
191
+ Fixes for systems without the dev hoe plugins
192
+ [c740766cfc01]
193
+
194
+ * lib/linguistics/en.rb, lib/linguistics/inflector.rb:
195
+ Fixing some API docs
196
+ [4cfcdca46d1a]
197
+
198
+ 2010-12-16 Michael Granger <ged@FaerieMUD.org>
199
+
200
+ * lib/linguistics/languagetags.tb:
201
+ Remove unused module
202
+ [d648b470243c]
203
+
204
+ * .hgignore, ChangeLog, README, README.english, Rakefile,
205
+ lib/linguistics.rb, lib/linguistics/en.rb,
206
+ lib/linguistics/en/infinitive.rb, lib/linguistics/en/infinitives.rb,
207
+ lib/linguistics/en/linkparser.rb, lib/linguistics/en/wordnet.rb,
208
+ lib/linguistics/iso639.rb, spec/linguistics/en_spec.rb,
209
+ spec/linguistics_spec.rb, tests/TEMPLATE.rb.tpl,
210
+ tests/en/infinitive.tests.rb, tests/en/inflect.tests.rb,
211
+ tests/en/lafcadio.tests.rb, tests/en/linkparser.tests.rb,
212
+ tests/en/lprintf.tests.rb, tests/en/titlecase.tests.rb,
213
+ tests/en/wordnet.tests.rb, tests/lingtestcase.rb, utils.rb:
214
+ Merged in work from the 20_redesign branch
215
+ [29f18e9ec72b]
216
+
217
+ * Prepare feature branch for merging
218
+ [7bab3eac65e1] <20_redesign>
219
+
220
+ * History.md, Manifest.txt, README.md, README.textile, Rakefile,
221
+ Rakefile.local, tests/TEMPLATE.rb.tpl, tests/en/wordnet.tests.rb,
222
+ tests/lingtestcase.rb:
223
+ Converted to Hoe for build stuff, cleanup.
224
+ [1ddb089668a6] <20_redesign>
225
+
226
+ 2010-12-15 Michael Granger <ged@FaerieMUD.org>
227
+
228
+ * ChangeLog, Rakefile, lib/linguistics/en/wordnet.rb, project.yml,
229
+ spec/lib/helpers.rb, spec/linguistics/en/articles_spec.rb,
230
+ spec/linguistics/en/linkparser_spec.rb,
231
+ spec/linguistics/en/pluralization_spec.rb,
232
+ spec/linguistics/en/wordnet_spec.rb, tests/en/lprintf.tests.rb,
233
+ tests/en/titlecase.tests.rb, utils.rb:
234
+ Updated packaging, updated WordNet module, lprintf().
235
+ [a5c25f0f1458] <20_redesign>
236
+
237
+ 2010-12-10 Michael Granger <ged@FaerieMUD.org>
238
+
239
+ * lib/linguistics/en.rb, lib/linguistics/en/articles.rb,
240
+ lib/linguistics/en/pluralization.rb, spec/linguistics/en_spec.rb,
241
+ tests/en/inflect.tests.rb, tests/en/linkparser.tests.rb:
242
+ Cleaned up and wrote initial specs for Linguistics::EN.lprintf and
243
+ related methods.
244
+ [b31562e6d34c] <20_redesign>
245
+
246
+ 2010-12-09 Michael Granger <ged@FaerieMUD.org>
247
+
248
+ * spec/lib/helpers.rb, spec/linguistics/en/participles_spec.rb:
249
+ Clean up spec helper, and fix participles spec.
250
+ [33d03eab7092] <20_redesign>
251
+
252
+ 2010-10-19 Michael Granger <ged@FaerieMUD.org>
253
+
254
+ * lib/linguistics/en.rb:
255
+ Removed stuff that's been moved out into addons.
256
+ [80451a09a77c] <20_redesign>
257
+
258
+ * lib/linguistics/en/titlecase.rb,
259
+ spec/linguistics/en/titlecase_spec.rb:
260
+ Split out titlecase addon
261
+ [302486502d36] <20_redesign>
262
+
263
+ * lib/linguistics/en/linkparser.rb,
264
+ spec/linguistics/en/linkparser_spec.rb:
265
+ Updated linkparser addon and added a rudimentary spec
266
+ [d68037e0be3d] <20_redesign>
267
+
268
+ * lib/linguistics/en/participles.rb,
269
+ spec/linguistics/en/participles_spec.rb:
270
+ Split out present participles
271
+ [f79a44c612e4] <20_redesign>
272
+
273
+ * lib/linguistics/en/articles.rb,
274
+ spec/linguistics/en/articles_spec.rb:
275
+ Split out indefinite article functions
276
+ [e6ca28d45eb1] <20_redesign>
277
+
278
+ * lib/linguistics/en/conjunctions.rb,
279
+ spec/linguistics/en/conjunctions_spec.rb:
280
+ Fixed conjunctions.
281
+ [5b7d00ffe607] <20_redesign>
282
+
283
+ 2010-10-18 Michael Granger <ged@FaerieMUD.org>
284
+
285
+ * lib/linguistics.rb, spec/linguistics/en_spec.rb,
286
+ spec/linguistics_spec.rb:
287
+ Catch github master up to current version
288
+ [a2fa99d19aeb]
289
+
290
+ * README.textile, tests/en/inflect.tests.rb,
291
+ tests/en/linkparser.tests.rb, tests/en/titlecase.tests.rb,
292
+ tests/en/wordnet.tests.rb, tests/lingtestcase.rb:
293
+ Updating README for the 2.0 branch
294
+ [b58ab2bda74a] <20_redesign>
295
+
296
+ 2009-08-15 Michael Granger <ged@FaerieMUD.org>
297
+
298
+ * README, Rakefile, project.yml:
299
+ Updated build system
300
+ [90d4b94647c1]
301
+
302
+ 2008-12-23 Michael Granger <ged@FaerieMUD.org>
303
+
304
+ * LICENSE, Rakefile, lib/linguistics/en/wordnet.rb, project.yml:
305
+ * Updated build system.
306
+ * Fixed copyright years in the LICENSE file
307
+ * Cleanup of the wordnet integration source.
308
+ [4df4ff96ffcd]
309
+
310
+ 2008-09-06 Michael Granger <ged@FaerieMUD.org>
311
+
312
+ * .cvsignore, .gemspec, Artistic, ChangeLog, LICENSE,
313
+ Linguistics.tmproj, MANIFEST, README, Rakefile, TODO,
314
+ docs/.cvsignore, docs/CATALOG, docs/makedocs.rb, install.rb,
315
+ lib/linguistics/en.rb, lib/linguistics/en/infinitive.rb,
316
+ lib/linguistics/en/linkparser.rb, lib/linguistics/en/wordnet.rb,
317
+ makedist.rb, misc/rake/helpers.rb, misc/rake/svn.rb,
318
+ misc/rake/verifytask.rb, project.yml, redist/crosscase.rb, test.rb,
319
+ tests/en/infinitive.tests.rb, tests/en/inflect.tests.rb,
320
+ tests/en/linkparser.tests.rb, tests/en/wordnet.tests.rb, utils.rb:
321
+ Converted to a new build system.
322
+ [c14698509a9c]
323
+
324
+ 2008-01-30 Michael Granger <ged@FaerieMUD.org>
325
+
326
+ * Linguistics.tmproj, Rakefile, lib/linguistics.rb,
327
+ lib/linguistics/iso639.rb, misc/rake/helpers.rb, misc/rake/svn.rb,
328
+ misc/rake/verifytask.rb, spec/linguistics/en_spec.rb,
329
+ spec/linguistics/iso639_spec.rb, spec/linguistics_spec.rb,
330
+ tests/en/conjunction.tests.rb, tests/use.tests.rb:
331
+ Started update of specs and build system
332
+ [079785674777]
333
+
334
+ 2010-10-18 Michael Granger <ged@FaerieMUD.org>
335
+
336
+ * .hgignore, .irbrc, README, README.english, README.textile, Rakefile,
337
+ examples/generalize_sentence.rb, lib/linguistics.rb,
338
+ lib/linguistics/en.rb, lib/linguistics/en/conjunctions.rb,
339
+ lib/linguistics/en/infinitive.rb, lib/linguistics/en/infinitives.rb,
340
+ lib/linguistics/en/linkparser.rb, lib/linguistics/en/numbers.rb,
341
+ lib/linguistics/en/pluralization.rb, lib/linguistics/en/wordnet.rb,
342
+ lib/linguistics/inflector.rb, lib/linguistics/iso639.rb,
343
+ lib/linguistics/mixins.rb, lib/linguistics/utils.rb, project.yml,
344
+ spec/lib/helpers.rb, spec/linguistics/en/conjunctions_spec.rb,
345
+ spec/linguistics/en/infinitive_spec.rb,
346
+ spec/linguistics/en/infinitives_spec.rb,
347
+ spec/linguistics/en/numbers_spec.rb,
348
+ spec/linguistics/en/pluralization_spec.rb,
349
+ spec/linguistics/en_spec.rb, spec/linguistics/iso639_spec.rb,
350
+ spec/linguistics_spec.rb, tests/en/lprintf.tests.rb:
351
+ Checkpoint commit; got pluralization, numbers, and indefinite
352
+ articles working
353
+ [2732414c5fa0] <20_redesign>
354
+
355
+ 2010-03-01 Michael Granger <ged@FaerieMUD.org>
356
+
357
+ * Rakefile.local, experiments/gen_numwords_specs.rb,
358
+ lib/linguistics.rb, lib/linguistics/en.rb,
359
+ lib/linguistics/en/conjunctions.rb, lib/linguistics/en/numbers.rb,
360
+ lib/linguistics/en/pluralization.rb, lib/linguistics/inflector.rb,
361
+ lib/linguistics/iso639.rb, lib/linguistics/mixins.rb,
362
+ lib/linguistics/utils.rb, spec/lib/constants.rb,
363
+ spec/lib/helpers.rb, spec/linguistics/en/conjunctions_spec.rb,
364
+ spec/linguistics/en/numbers_spec.rb, spec/linguistics_spec.rb,
365
+ tests/en/infinitive.tests.rb, tests/en/lafcadio.tests.rb:
366
+ Checkpoint commit
367
+ [485369a7d3ac] <20_redesign>
368
+
369
+ 2009-12-17 Michael Granger <ged@FaerieMUD.org>
370
+
371
+ * lib/linguistics/iso639.rb, lib/linguistics/languagetags.tb:
372
+ Started work on a modern replacement for the old iso639 language
373
+ tags.
374
+ [8bd6ee08ffb1]
375
+
376
+ 2009-11-17 Michael Granger <ged@FaerieMUD.org>
377
+
378
+ * .hgtags:
379
+ Added tag 1.0.8 for changeset da353c888ad4
380
+ [dad041cf748b]
381
+
382
+ * .hgsigs:
383
+ Added signature for changeset 8029de2f9c60
384
+ [da353c888ad4] [1.0.8]
385
+
386
+ * Rakefile, lib/linguistics.rb:
387
+ Updated build system, bump version to 1.0.8.
388
+ [8029de2f9c60]
389
+
390
+ * lib/linguistics.rb, lib/linguistics/en.rb,
391
+ lib/linguistics/en/infinitive.rb, lib/linguistics/en/linkparser.rb,
392
+ lib/linguistics/en/wordnet.rb, lib/linguistics/iso639.rb:
393
+ Fixes for 1.9.1 and license consistency update.
394
+ [2640c845eb5c]
395
+
396
+ 2009-11-06 Michael Granger <ged@FaerieMUD.org>
397
+
398
+ * .hgtags:
399
+ Added tag 1.0.7 for changeset 5f4fa2c136c7
400
+ [5608e79a8c0e]
401
+
402
+ * .hgsigs:
403
+ Added signature for changeset bebbaa868974
404
+ [5f4fa2c136c7] [1.0.7]
405
+
406
+ * .hgtags:
407
+ Removed tag 1.0.7
408
+ [bebbaa868974]
409
+
410
+ * .hgignore, Rakefile:
411
+ Updated build system/gem; migrating to gemcutter.
412
+ [745ab2865e60]
413
+
414
+ * .hgtags:
415
+ Added tag 1.0.7 for changeset 1e029bfd9ead
416
+ [768322417359]
417
+
418
+ * .hgsigs:
419
+ Added signature for changeset 401a04c4cf43
420
+ [1e029bfd9ead]
421
+
422
+ * lib/linguistics.rb:
423
+ Bumping version
424
+ [401a04c4cf43]
425
+
426
+ * LICENSE, README, Rakefile, lib/linguistics.rb,
427
+ lib/linguistics/en.rb, lib/linguistics/en/conjunctions.rb,
428
+ lib/linguistics/en/infinitive.rb, lib/linguistics/en/linkparser.rb,
429
+ lib/linguistics/en/pluralization.rb, lib/linguistics/en/wordnet.rb,
430
+ lib/linguistics/iso639.rb, project.yml,
431
+ spec/linguistics/en/conjunctions_spec.rb,
432
+ spec/linguistics/en/infinitive_spec.rb,
433
+ spec/linguistics/en/pluralization_spec.rb,
434
+ spec/linguistics/en_spec.rb, spec/linguistics/iso639_spec.rb,
435
+ spec/linguistics_spec.rb, tests/en/infinitive.tests.rb,
436
+ tests/en/inflect.tests.rb, tests/en/lafcadio.tests.rb,
437
+ tests/en/linkparser.tests.rb, tests/en/lprintf.tests.rb,
438
+ tests/en/titlecase.tests.rb, tests/en/wordnet.tests.rb,
439
+ tests/lingtestcase.rb:
440
+ Checkpoint commit
441
+ [95790e776f43] <20_redesign>
442
+
443
+ 2009-08-15 Michael Granger <ged@FaerieMUD.org>
444
+
445
+ * README, Rakefile, project.yml:
446
+ Updated build system
447
+ [405a85e00d33]
448
+
449
+ 2008-12-23 Michael Granger <ged@FaerieMUD.org>
450
+
451
+ * LICENSE, Rakefile, lib/linguistics/en/wordnet.rb, project.yml:
452
+ * Updated build system.
453
+ * Fixed copyright years in the LICENSE file
454
+ * Cleanup of the wordnet integration source.
455
+ [10f0010d38f7]
456
+
457
+ 2008-09-06 Michael Granger <ged@FaerieMUD.org>
458
+
459
+ * .cvsignore, .gemspec, Artistic, ChangeLog, LICENSE,
460
+ Linguistics.tmproj, MANIFEST, README, Rakefile, TODO,
461
+ docs/.cvsignore, docs/CATALOG, docs/makedocs.rb, install.rb,
462
+ lib/linguistics/en.rb, lib/linguistics/en/infinitive.rb,
463
+ lib/linguistics/en/linkparser.rb, lib/linguistics/en/wordnet.rb,
464
+ makedist.rb, misc/rake/helpers.rb, misc/rake/svn.rb,
465
+ misc/rake/verifytask.rb, project.yml, redist/crosscase.rb, test.rb,
466
+ tests/en/infinitive.tests.rb, tests/en/inflect.tests.rb,
467
+ tests/en/linkparser.tests.rb, tests/en/wordnet.tests.rb, utils.rb:
468
+ Converted to a new build system.
469
+ [21e0fa69b1a3]
470
+
471
+ 2008-01-30 Michael Granger <ged@FaerieMUD.org>
472
+
473
+ * Linguistics.tmproj, Rakefile, lib/linguistics.rb,
474
+ lib/linguistics/iso639.rb, misc/rake/helpers.rb, misc/rake/svn.rb,
475
+ misc/rake/verifytask.rb, spec/linguistics/en_spec.rb,
476
+ spec/linguistics/iso639_spec.rb, spec/linguistics_spec.rb,
477
+ tests/en/conjunction.tests.rb, tests/use.tests.rb:
478
+ Started update of specs and build system
479
+ [31309a47cd51]
480
+
481
+ 2007-07-25 Michael Granger <ged@FaerieMUD.org>
482
+
483
+ * examples/generalize_sentence.rb:
484
+ Adding examples directory
485
+ [25721aae944c]
486
+
487
+ 2007-06-13 Michael Granger <ged@FaerieMUD.org>
488
+
489
+ * .gemspec, .irbrc, ChangeLog, Linguistics.tmproj, README,
490
+ docs/makedocs.rb, install.rb, lib/linguistics.rb,
491
+ lib/linguistics/en.rb, lib/linguistics/en/linkparser.rb,
492
+ lib/linguistics/en/wordnet.rb, makedist.rb, test.rb,
493
+ tests/en/conjunction.tests.rb, tests/en/inflect.tests.rb,
494
+ tests/en/lafcadio.tests.rb, tests/en/linkparser.tests.rb,
495
+ tests/en/lprintf.tests.rb, tests/en/titlecase.tests.rb,
496
+ tests/en/wordnet.tests.rb, tests/lingtestcase.rb,
497
+ tests/use.tests.rb, utils.rb:
498
+ Checkpoint commit
499
+ [221d313ccdd5]
500
+
501
+ 2006-07-11 Michael Granger <ged@FaerieMUD.org>
502
+
503
+ * docs/CATALOG:
504
+ * Updating docs/CATALOG with new CVS/server info
505
+ [4e41be395a2f]
506
+
507
+ * lib/linguistics/en.rb, tests/en/conjunction.tests.rb:
508
+ * Fix #conjunction with :penultimate => false for lists of three.
509
+ [53aa0aa41c17]
510
+
511
+ * lib/linguistics/en.rb, tests/en/inflect.tests.rb:
512
+ * Fixed the ':and' setting in EN#numwords. Closes #8.
513
+ [2082fa705aed]
514
+
515
+ 2006-04-30 Michael Granger <ged@FaerieMUD.org>
516
+
517
+ * Linguistics.tmproj, experiments/conjunct-with-block.rb,
518
+ lib/linguistics.rb, lib/linguistics/en.rb,
519
+ lib/linguistics/en/wordnet.rb, tests/en/conjunction.tests.rb,
520
+ tests/en/inflect.tests.rb, utils.rb:
521
+ * Added optional block to #conjuction to allow inline conversion of
522
+ joined objects.
523
+ * Added lprintf for injecting linguistics into formatted strings.
524
+ [baf5b4b35b56]
525
+
526
+ 2005-11-04 Michael Granger <ged@FaerieMUD.org>
527
+
528
+ * experiments/api.rb, experiments/lprintf.rb:
529
+ * Updated api experiment so that it actually runs by commenting out
530
+ the leftover Perl stuff.
531
+ * Added lprintf() experiment.
532
+ [4e3d732b608d]
533
+
534
+ 2005-10-30 Michael Granger <ged@FaerieMUD.org>
535
+
536
+ * lib/linguistics.rb:
537
+ - Added autoloading of language constants.
538
+ [733a1fe188d9]
539
+
540
+ 2005-10-14 Michael Granger <ged@FaerieMUD.org>
541
+
542
+ * docs/makedocs.rb, install.rb, makedist.rb, utils.rb:
543
+ - Updated to latest project-utils.
544
+ [2d110ae82da4]
545
+
546
+ * lib/linguistics/en.rb:
547
+ - Replaced 'hash.dup.update' with 'hash.merge'.
548
+ [6b3f1ba74aef]
549
+
550
+ 2005-07-14 Michael Granger <ged@FaerieMUD.org>
551
+
552
+ * ChangeLog:
553
+ Updated changelog
554
+ [7f7a1183b57d]
555
+
556
+ 2005-07-13 Michael Granger <ged@FaerieMUD.org>
557
+
558
+ * - Ignored html directory.
559
+ [54788ab9bcf8]
560
+
561
+ * docs/makedocs.rb, makedist.rb, utils.rb:
562
+ - Merged changes from project-utils.
563
+ [b5d49e0c35ca]
564
+
565
+ * .gemspec:
566
+ Initial checkin. Fixes #3.
567
+ [31560ff75fd3]
66
568
 
67
- 133 a6e22bd4d5c4 2011-01-10 10:27 -0800 ged
68
- Removed the explicit #language method, as it's now implemented in the inflector
569
+ * experiments/api.rb:
570
+ - Set svn:keyword
571
+ [37d8a6c881ee]
69
572
 
70
- 132 81360f6cb3f1 2011-01-10 10:26 -0800 ged
71
- Fixed a bug in inflector construction for languages with only a 3-character code
573
+ * lib/linguistics.rb, lib/linguistics/en.rb,
574
+ lib/linguistics/en/infinitive.rb, redist/crosscase.rb,
575
+ redist/hashslice.rb, tests/en/lafcadio.tests.rb,
576
+ tests/en/linkparser.tests.rb, tests/en/titlecase.tests.rb,
577
+ tests/lingtestcase.rb, tests/use.tests.rb:
578
+ - Fixed up subversion constants
579
+ - Merged contributions from Francis Hwang <sera@fhwang.net>
580
+ (#camel_case_to_english, #english_to_camel_case, #proper_noun).
581
+ Closes #2
582
+ - Set svn:keyword
583
+ [a63acb00f644]
72
584
 
73
- 131 df32ab4ec78f 2011-01-10 10:20 -0800 ged
74
- Splitting out monkeypatches into a separate file
585
+ * lib/linguistics.rb:
586
+ - Added Subversion constants
587
+ - Cleaned up comments for language proxy class.
588
+ [63e8c69d1907]
589
+
590
+ * experiments/lafcadio_plural.rb:
591
+ Initial checkin.
592
+ [238673eaaee4]
75
593
 
76
- 130 eb91956633ba 2011-01-10 10:05 -0800 ged
77
- Removing unused mixin code
594
+ * experiments/TEMPLATE.rb.tpl:
595
+ Initial checkin.
596
+ [f6514ebec6a5]
78
597
 
79
- 129 77ff43777256 2011-01-10 09:56 -0800 ged
80
- Added a RSpec 2 shared behavior for testing language modules
598
+ 2004-05-08 Michael Granger <ged@FaerieMUD.org>
81
599
 
82
- 128 c740766cfc01 2011-01-10 08:24 -0800 ged
83
- Fixes for systems without the dev hoe plugins
600
+ * install.rb:
601
+ - Added compatibility with Aoki-san's install.rb. Kind of.
602
+ [ee9fdfc4c36c]
84
603
 
85
- 127 4cfcdca46d1a 2011-01-10 08:23 -0800 ged
86
- Fixing some API docs
604
+ * lib/linguistics/en/linkparser.rb:
605
+ - Bugfix: Linkparser should start out missing by default.
606
+ [158cf095a9fa]
87
607
 
88
- 126 d648b470243c 2010-12-16 17:25 -0800 ged
89
- Remove unused module
608
+ * test.rb:
609
+ - Fixed to work even if it's not in the cwd. Thanks to batsman on
610
+ irc://irc.freenode.net/#ruby-lang for reporting this.
611
+ [474e184fe6ff]
90
612
 
91
- 125:113,124 29f18e9ec72b 2010-12-16 17:14 -0800 ged
92
- Merged in work from the 20_redesign branch
613
+ 2003-10-09 Michael Granger <ged@FaerieMUD.org>
93
614
 
94
- 124 7bab3eac65e1 2010-12-16 17:05 -0800 ged
95
- Prepare feature branch for merging
615
+ * .cvsignore:
616
+ Initial checkin.
617
+ [8a0b2a4b886e]
96
618
 
97
- 123 1ddb089668a6 2010-12-16 16:58 -0800 ged
98
- Converted to Hoe for build stuff, cleanup.
619
+ * install.rb:
620
+ - Updated requirements list
99
621
 
100
- 122 a5c25f0f1458 2010-12-15 08:04 -0800 ged
101
- Updated packaging, updated WordNet module, lprintf().
622
+ - Removed unnecessary readline require
623
+ [845e03b13966]
102
624
 
103
- 121 b31562e6d34c 2010-12-10 09:45 -0800 ged
104
- Cleaned up and wrote initial specs for Linguistics::EN.lprintf and related methods.
625
+ * README:
626
+ - Fixed requirements/optional libraries (Thanks to Yuri Leikind
627
+ <y.leikind@sam-solutions.net> for bringing this to my attention).
628
+ [4666486a50eb]
105
629
 
106
- 120 33d03eab7092 2010-12-09 11:40 -0800 ged
107
- Clean up spec helper, and fix participles spec.
630
+ * MANIFEST:
631
+ - Wildcarded everything under lib/ so new additions don't have to be
632
+ explicitly listed.
108
633
 
109
- 119 80451a09a77c 2010-10-19 15:04 -0700 ged
110
- Removed stuff that's been moved out into addons.
634
+ - Added README.english (Thanks to Yuri Leikind <y.leikind@sam-
635
+ solutions.net> for bringing this to my attention).
636
+ [214171390c1e]
111
637
 
112
- 118 302486502d36 2010-10-19 15:03 -0700 ged
113
- Split out titlecase addon
638
+ 2003-09-14 Michael Granger <ged@FaerieMUD.org>
114
639
 
115
- 117 d68037e0be3d 2010-10-19 14:19 -0700 ged
116
- Updated linkparser addon and added a rudimentary spec
640
+ * lib/linguistics/en/wordnet.rb:
641
+ - Calls to #synset no longer trap parse errors. This was done for
642
+ two reasons:
117
643
 
118
- 116 f79a44c612e4 2010-10-19 13:14 -0700 ged
119
- Split out present participles
644
+ 1. If the WordNet doesn't load, WordNet::ParseError is an
645
+ undefined constant, so the function fails with a semi-ambiguous
646
+ error message.
120
647
 
121
- 115 e6ca28d45eb1 2010-10-19 13:14 -0700 ged
122
- Split out indefinite article functions
648
+ 2. The user of the library might wish to handle the parse failure
649
+ herself.
650
+ [f5db1fb97033]
123
651
 
124
- 114:112 5b7d00ffe607 2010-10-19 08:55 -0700 ged
125
- Fixed conjunctions.
652
+ * test.rb:
653
+ - Added redist/ to $LOAD_PATH.
654
+ [02ca82bc6984]
126
655
 
127
- 113:111,105 a2fa99d19aeb 2010-10-18 15:45 -0700 ged
128
- Catch github master up to current version
656
+ * lib/linguistics/en/wordnet.rb:
657
+ - Added synopsis of use to the comment header.
129
658
 
130
- 112:107 b58ab2bda74a 2010-10-18 15:43 -0700 ged
131
- Updating README for the 2.0 branch
659
+ - Added reminder to finish documenting the auto-generated code.
660
+ [4db8df9973b4]
132
661
 
133
- 111 90d4b94647c1 2009-08-15 06:36 -0700 ged
134
- Updated build system
662
+ * lib/linguistics/en/linkparser.rb:
663
+ - Added synopsis of use to the comment header.
664
+ [6bad66b91135]
135
665
 
136
- 110 4df4ff96ffcd 2008-12-23 15:39 +0000 ged
137
- * Updated build system.
666
+ * docs/CATALOG:
667
+ - Added README.english
668
+ [634ce53493be]
138
669
 
139
- 109 c14698509a9c 2008-09-06 05:20 +0000 ged
140
- Converted to a new build system.
670
+ * README.english:
671
+ - Fixed screwed-up code resulting from broken paste.
672
+ [fb47d6b0ded6]
141
673
 
142
- 108:88 079785674777 2008-01-30 07:01 +0000 ged
143
- Started update of specs and build system
674
+ * README:
675
+ - Added mention of README.english.
676
+ [7146ca3eebfc]
144
677
 
145
- 107 2732414c5fa0 2010-10-18 15:26 -0700 ged
146
- Checkpoint commit; got pluralization, numbers, and indefinite articles working
678
+ * lib/linguistics/en.rb:
679
+ - Removed redundant mention of the WordNet module from the comment
680
+ header.
681
+ [9881c8ad3958]
147
682
 
148
- 106:93 485369a7d3ac 2010-03-01 22:33 -0800 ged
149
- Checkpoint commit
683
+ * lib/linguistics/en/linkparser.rb:
684
+ - Fixed the comment header some more.
685
+ [7aaa4bd062f6]
150
686
 
151
- 105 8bd6ee08ffb1 2009-12-17 22:03 -0800 ged
152
- Started work on a modern replacement for the old iso639 language tags.
687
+ * install.rb:
688
+ - Now installs the stuff in redist/ too.
689
+ [5eac6f24970e]
153
690
 
154
- 104 dad041cf748b 2009-11-17 09:04 -0800 ged
155
- Added tag 1.0.8 for changeset da353c888ad4
691
+ * MANIFEST:
692
+ - Changed pattern for the redist directory to catch any .rb files.
693
+ [1ca51228553c]
156
694
 
157
- 103[1.0.8] da353c888ad4 2009-11-17 09:04 -0800 ged
158
- Added signature for changeset 8029de2f9c60
695
+ * lib/linguistics/en/infinitive.rb:
696
+ - Fixed names of constants to reduce the chances of collision.
697
+ [a790dfd55178]
159
698
 
160
- 102 8029de2f9c60 2009-11-17 09:03 -0800 ged
161
- Updated build system, bump version to 1.0.8.
699
+ * redist/crosscase.rb:
700
+ Initial checkin from version 0.01 of CrossCase.
701
+ [e9b089d13462]
162
702
 
163
- 101 2640c845eb5c 2009-11-17 08:59 -0800 ged
164
- Fixes for 1.9.1 and license consistency update.
703
+ * tests/en/linkparser.tests.rb:
704
+ - Changed parsing of non-sentences to expect errors in accordance
705
+ with changes to the API of the LinkParser integration.
706
+ [87fad66155c9]
165
707
 
166
- 100 5608e79a8c0e 2009-11-06 21:40 -0800 ged
167
- Added tag 1.0.7 for changeset 5f4fa2c136c7
708
+ * lib/linguistics/en.rb:
709
+ - Added CrossCase require/include to provide under_barred aliasing
710
+ for camelCase functions.
711
+ [2c428d7f5cf8]
168
712
 
169
- 99[1.0.7] 5f4fa2c136c7 2009-11-06 21:40 -0800 ged
170
- Added signature for changeset bebbaa868974
713
+ * README:
714
+ - Added Martin to the Authors list.
171
715
 
172
- 98 bebbaa868974 2009-11-06 21:39 -0800 ged
173
- Removed tag 1.0.7
716
+ - Updated optional list.
717
+ [ea35375458c6]
174
718
 
175
- 97 745ab2865e60 2009-11-06 21:34 -0800 ged
176
- Updated build system/gem; migrating to gemcutter.
719
+ * README.english:
720
+ Initial checkin.
721
+ [30d897f7238c]
177
722
 
178
- 96 768322417359 2009-11-06 21:16 -0800 ged
179
- Added tag 1.0.7 for changeset 1e029bfd9ead
723
+ * lib/linguistics/en/linkparser.rb:
724
+ - Touched up the file description a bit.
180
725
 
181
- 95 1e029bfd9ead 2009-11-06 21:16 -0800 ged
182
- Added signature for changeset 401a04c4cf43
726
+ - @lpError now intitialized: bug spotted by Martin Chase.
183
727
 
184
- 94:92 401a04c4cf43 2009-11-06 21:15 -0800 ged
185
- Bumping version
728
+ - Calls to #linkParse no longer trap parse errors. This was done for
729
+ two reasons:
186
730
 
187
- 93 95790e776f43 2009-11-06 21:11 -0800 ged
188
- Checkpoint commit
731
+ 1. If the LinkParser module doesn't load, LinkParser::ParseError
732
+ is an undefined constant, so the function fails with a semi-
733
+ ambiguous error message.
189
734
 
190
- 92 405a85e00d33 2009-08-15 06:36 -0700 ged
191
- Updated build system
735
+ 2. The user of the library might wish to handle the parse failure
736
+ herself.
737
+ [e305e6d5c5f6]
192
738
 
193
- 91 10f0010d38f7 2008-12-23 15:39 +0000 ged
194
- * Updated build system.
739
+ 2003-09-11 Michael Granger <ged@FaerieMUD.org>
195
740
 
196
- 90 21e0fa69b1a3 2008-09-06 05:20 +0000 ged
197
- Converted to a new build system.
741
+ * ChangeLog:
742
+ Checkpoint commit
743
+ [9c2ff236f6b1]
198
744
 
199
- 89 31309a47cd51 2008-01-30 07:01 +0000 ged
200
- Started update of specs and build system
745
+ * tests/en/inflect.tests.rb:
746
+ - Added test for functional interface to auto-generated code.
201
747
 
202
- 88 25721aae944c 2007-07-25 17:18 +0000 ged
203
- Adding examples directory
748
+ - Removed tests of the 'use' function into their own test case.
749
+ [c67f784e7948]
204
750
 
205
- 87 221d313ccdd5 2007-06-13 05:25 +0000 ged
206
- Checkpoint commit
751
+ * tests/en/conjunction.tests.rb:
752
+ - Added test for functional interface to auto-generated code.
753
+ [4d6e8b90bcb0]
207
754
 
208
- 86 4e41be395a2f 2006-07-11 22:42 +0000 ged
209
- * Updating docs/CATALOG with new CVS/server info
755
+ * lib/linguistics/en/wordnet.rb, tests/en/infinitive.tests.rb:
756
+ Initial checkin.
757
+ [6f71252ff658]
210
758
 
211
- 85 53aa0aa41c17 2006-07-11 22:41 +0000 ged
212
- * Fix #conjunction with :penultimate => false for lists of three.
759
+ * tests/use.tests.rb:
760
+ - Fixed require block at the top.
213
761
 
214
- 84 2082fa705aed 2006-07-11 19:17 +0000 ged
215
- * Fixed the ':and' setting in EN#numwords. Closes #8.
762
+ - Changed name of intermediate class to reflect change in
763
+ linguistics.rb.
216
764
 
217
- 83 baf5b4b35b56 2006-04-30 00:53 +0000 ged
218
- * Added optional block to #conjuction to allow inline conversion of joined
765
+ - Fixed 1.8 complaint.
766
+ [8eb3e2977dd5]
219
767
 
220
- 82 4e3d732b608d 2005-11-04 12:17 +0000 ged
221
- * Updated api experiment so that it actually runs by commenting out the leftover
768
+ * tests/lingtestcase.rb:
769
+ - Added a dummy test so if the tests for optional modules can't be
770
+ run (because the modules on which they depend aren't installed),
771
+ it doesn't count as a failure because there were no tests.
772
+ [75be1895f357]
222
773
 
223
- 81 733a1fe188d9 2005-10-30 23:59 +0000 ged
224
- - Added autoloading of language constants.
774
+ * tests/TEMPLATE.rb.tpl:
775
+ - Fixed leftover comment from copy.
776
+ [743382c087e6]
225
777
 
226
- 80 2d110ae82da4 2005-10-14 20:39 +0000 ged
227
- - Updated to latest project-utils.
778
+ * lib/linguistics/iso639.rb:
779
+ - Fixed typo.
780
+ [23790f38a0cb]
228
781
 
229
- 79 6b3f1ba74aef 2005-10-14 20:34 +0000 ged
230
- - Replaced 'hash.dup.update' with 'hash.merge'.
782
+ * lib/linguistics/en.rb:
783
+ - Removed some more code for the aborted attempt to make the module
784
+ 1.6-compatible.
231
785
 
232
- 78 7f7a1183b57d 2005-07-14 23:12 +0000 ged
233
- Updated changelog
786
+ - Added requires for new extensions 'wordnet', 'linkparser', and
787
+ 'infinitive'.
234
788
 
235
- 77 54788ab9bcf8 2005-07-13 23:09 +0000 ged
236
- - Ignored html directory.
789
+ - Updated docs in the header, though they're not yet ready for
790
+ release.
791
+ [9a7bed5457b2]
237
792
 
238
- 76 b5d49e0c35ca 2005-07-13 22:35 +0000 ged
239
- - Merged changes from project-utils.
793
+ * lib/linguistics.rb:
794
+ - Changed name of "inflector" class to "languageProxy" to better fit
795
+ what it does.
240
796
 
241
- 75 31560ff75fd3 2005-07-13 21:04 +0000 ged
242
- Initial checkin. Fixes #3.
797
+ - Added support for transparent delegator proxy methods.
243
798
 
244
- 74 37d8a6c881ee 2005-07-13 20:18 +0000 ged
245
- - Set svn:keyword
799
+ - Added support for MyClass::extend( Linguistics ) and class
800
+ MyClass; include Linguistics; end.
246
801
 
247
- 73 a63acb00f644 2005-07-13 19:58 +0000 ged
248
- - Fixed up subversion constants
802
+ - Modified code in #loadLanguage to minimize the number of requires.
803
+ [579fb11da29c]
249
804
 
250
- 72 63e8c69d1907 2005-07-13 12:46 +0000 ged
251
- - Added Subversion constants
805
+ * .irbrc:
806
+ - Added :installProxy config to the #use call.
807
+ [5d62e88eabf3]
252
808
 
253
- 71 238673eaaee4 2005-07-13 12:43 +0000 ged
254
- Initial checkin.
809
+ * experiments/generalize.rb, experiments/wn-proglang.rb:
810
+ Initial checkin.
811
+ [28370746e077]
255
812
 
256
- 70 f6514ebec6a5 2005-07-13 12:42 +0000 ged
257
- Initial checkin.
813
+ * experiments/allobjlist.rb:
814
+ - Added example output.
815
+ [e75da92bfb98]
258
816
 
259
- 69 ee9fdfc4c36c 2004-05-08 19:15 +0000 ged
260
- - Added compatibility with Aoki-san's install.rb. Kind of.
817
+ * docs/makedocs.rb:
818
+ - Reworked to be more generically useful, and support parsing of
819
+ options from CATALOG file.
820
+ [d2ff7131481d]
261
821
 
262
- 68 158cf095a9fa 2004-05-08 19:07 +0000 ged
263
- - Bugfix: Linkparser should start out missing by default.
822
+ * docs/CATALOG:
823
+ - Added rdoc-option header.
824
+ [a7edb22b3097]
264
825
 
265
- 67 474e184fe6ff 2004-05-08 19:07 +0000 ged
266
- - Fixed to work even if it's not in the cwd. Thanks to batsman on
826
+ * utils.rb:
827
+ - Brought up-to-date with canonical source.
828
+ [ca2dcef4471a]
267
829
 
268
- 66 8a0b2a4b886e 2003-10-09 13:24 +0000 ged
269
- Initial checkin.
830
+ * TODO:
831
+ - Removed finished items.
832
+ [5d7d40c0bf22]
270
833
 
271
- 65 845e03b13966 2003-10-09 13:23 +0000 ged
272
- - Updated requirements list
834
+ * README:
835
+ - Beginnings of update for new release. Still needs more work before
836
+ release.
837
+ [865273ac947c]
273
838
 
274
- 64 4666486a50eb 2003-10-09 13:21 +0000 ged
275
- - Fixed requirements/optional libraries (Thanks to Yuri Leikind
839
+ * MANIFEST:
840
+ - Added ChangeLog.
841
+ [0c1335f96c40]
276
842
 
277
- 63 214171390c1e 2003-10-09 13:20 +0000 ged
278
- - Wildcarded everything under lib/ so new additions don't have to be explicitly
843
+ * lib/linguistics/en/infinitive.rb, lib/linguistics/en/linkparser.rb:
844
+ Initial checkin.
845
+ [0d4f3e0f6b33]
279
846
 
280
- 62 f5db1fb97033 2003-09-14 11:28 +0000 ged
281
- - Calls to #synset no longer trap parse errors. This was done for two reasons:
847
+ 2003-09-10 Michael Granger <ged@FaerieMUD.org>
282
848
 
283
- 61 02ca82bc6984 2003-09-14 11:20 +0000 ged
284
- - Added redist/ to $LOAD_PATH.
849
+ * tests/en/wordnet.tests.rb:
850
+ Initial checkin.
851
+ [74aa7e9f9ba8]
285
852
 
286
- 60 4db8df9973b4 2003-09-14 11:15 +0000 ged
287
- - Added synopsis of use to the comment header.
853
+ 2003-09-09 Martin Chase <stillflame@FaerieMUD.org>
288
854
 
289
- 59 6bad66b91135 2003-09-14 11:15 +0000 ged
290
- - Added synopsis of use to the comment header.
855
+ * tests/en/linkparser.tests.rb:
856
+ initial import
857
+ [ae845807a0f4]
291
858
 
292
- 58 634ce53493be 2003-09-14 11:15 +0000 ged
293
- - Added README.english
859
+ 2003-08-26 Michael Granger <ged@FaerieMUD.org>
294
860
 
295
- 57 fb47d6b0ded6 2003-09-14 11:15 +0000 ged
296
- - Fixed screwed-up code resulting from broken paste.
861
+ * docs/.cvsignore:
862
+ Initial checkin.
863
+ [f2ddd83efeef]
297
864
 
298
- 56 7146ca3eebfc 2003-09-14 11:14 +0000 ged
299
- - Added mention of README.english.
865
+ 2003-07-11 Michael Granger <ged@FaerieMUD.org>
300
866
 
301
- 55 9881c8ad3958 2003-09-14 10:47 +0000 ged
302
- - Removed redundant mention of the WordNet module from the comment header.
867
+ * lib/linguistics/en.rb:
868
+ - Added a Range#step 1.6 compat function.
869
+ [724036a529a6]
303
870
 
304
- 54 7aaa4bd062f6 2003-09-14 10:45 +0000 ged
305
- - Fixed the comment header some more.
871
+ * tests/use.tests.rb:
872
+ - 1.6 fixes.
873
+ [32814ce3597d]
306
874
 
307
- 53 5eac6f24970e 2003-09-14 10:39 +0000 ged
308
- - Now installs the stuff in redist/ too.
875
+ * lib/linguistics.rb:
876
+ - More 1.6ish fixes.
877
+ [9b7ee80b50ee]
309
878
 
310
- 52 1ca51228553c 2003-09-14 10:36 +0000 ged
311
- - Changed pattern for the redist directory to catch any .rb files.
879
+ 2003-07-10 Michael Granger <ged@FaerieMUD.org>
312
880
 
313
- 51 a790dfd55178 2003-09-14 10:35 +0000 ged
314
- - Fixed names of constants to reduce the chances of collision.
881
+ * lib/linguistics/en.rb:
882
+ Made module_methods out of the backend functions to support
883
+ including linguistic methods again.
884
+ [a3f5d11906de]
315
885
 
316
- 50 e9b089d13462 2003-09-14 10:33 +0000 ged
317
- Initial checkin from version 0.01 of CrossCase.
886
+ * lib/linguistics.rb:
887
+ - Fixed use of Hash#merge! (1.8 feature)
888
+ [7a7f05b223f7]
318
889
 
319
- 49 87fad66155c9 2003-09-14 10:30 +0000 ged
320
- - Changed parsing of non-sentences to expect errors in accordance with changes
890
+ * lib/linguistics/en.rb:
891
+ - Fixed usage of Hash#merge (a 1.8 feature).
892
+ [40457b3c1a48]
321
893
 
322
- 48 2c428d7f5cf8 2003-09-14 10:24 +0000 ged
323
- - Added CrossCase require/include to provide under_barred aliasing for camelCase
894
+ * tests/lingtestcase.rb:
895
+ - Removed unneccessary require of test/unit/mock.
896
+ [d11ee5810b08]
324
897
 
325
- 47 ea35375458c6 2003-09-14 10:24 +0000 ged
326
- - Added Martin to the Authors list.
898
+ 2003-07-09 Michael Granger <ged@FaerieMUD.org>
327
899
 
328
- 46 30d897f7238c 2003-09-14 10:23 +0000 ged
329
- Initial checkin.
900
+ * MANIFEST:
901
+ Initial checkin.
902
+ [9c32a7e30cb0]
330
903
 
331
- 45 e305e6d5c5f6 2003-09-14 09:29 +0000 ged
332
- - Touched up the file description a bit.
904
+ * install.rb:
905
+ Initial checkin.
906
+ [38aded3c6801]
333
907
 
334
- 44 9c2ff236f6b1 2003-09-11 05:04 +0000 ged
335
- Checkpoint commit
908
+ * docs/CATALOG:
909
+ - Explicitly listed linguistics.rb so it gets documented first.
910
+ [76747915b8c5]
336
911
 
337
- 43 c67f784e7948 2003-09-11 05:04 +0000 ged
338
- - Added test for functional interface to auto-generated code.
912
+ * utils.rb:
913
+ - Commented out rdoc-selection code, as it doesn't work.
914
+ [fcb245968c83]
339
915
 
340
- 42 4d6e8b90bcb0 2003-09-11 05:03 +0000 ged
341
- - Added test for functional interface to auto-generated code.
916
+ * README:
917
+ - Fleshed out instructions for use and addition.
918
+ [64c33b94c128]
342
919
 
343
- 41 6f71252ff658 2003-09-11 05:02 +0000 ged
344
- Initial checkin.
920
+ * Artistic, lib/linguistics.rb, tests/use.tests.rb:
921
+ - RDoc fixes
922
+ [07bd25eaf347]
345
923
 
346
- 40 8eb3e2977dd5 2003-09-11 05:02 +0000 ged
347
- - Fixed require block at the top.
924
+ * lib/linguistics/iso639.rb:
925
+ - Made some RDoc fixes
926
+ [943c544612cd]
348
927
 
349
- 39 75be1895f357 2003-09-11 05:00 +0000 ged
350
- - Added a dummy test so if the tests for optional modules can't be run (because
928
+ * lib/linguistics.rb:
929
+ - Added array-wrapping to allow single classes in the :classes
930
+ config argument.
351
931
 
352
- 38 743382c087e6 2003-09-11 04:59 +0000 ged
353
- - Fixed leftover comment from copy.
932
+ - Wrapped the code that adds the inflector method in a test for the
933
+ method's existance to avoid constantly redefining it for classes
934
+ which already have it.
935
+ [509a93564b58]
354
936
 
355
- 37 23790f38a0cb 2003-09-11 04:57 +0000 ged
356
- - Fixed typo.
937
+ * lib/linguistics/en.rb:
938
+ - Moved Array extension to the bottom of the file to avoid
939
+ confusion, and turned on :nodoc: for it.
940
+ [76b35a68af3e]
357
941
 
358
- 36 9a7bed5457b2 2003-09-11 04:57 +0000 ged
359
- - Removed some more code for the aborted attempt to make the module
942
+ * tests/conjunction.tests.rb, tests/en_inflect.tests.rb:
943
+ - Moved into the en/ directory to separate language-specific tests
944
+ from general tests.
945
+ [3e099b6e65ab]
360
946
 
361
- 35 579fb11da29c 2003-09-11 04:55 +0000 ged
362
- - Changed name of "inflector" class to "languageProxy" to better fit what it
947
+ * makedist.rb:
948
+ Fixed project-grokking expression
949
+ [86d7a993f44f]
363
950
 
364
- 34 5d62e88eabf3 2003-09-11 04:52 +0000 ged
365
- - Added :installProxy config to the #use call.
951
+ * docs/makedocs.rb:
952
+ Initial checkin.
953
+ [2832244cb478]
366
954
 
367
- 33 28370746e077 2003-09-11 04:52 +0000 ged
368
- Initial checkin.
955
+ * experiments/allobjlist.rb, experiments/farmobjs.rb:
956
+ Initial checkin
957
+ [12cb5587127a]
369
958
 
370
- 32 e75da92bfb98 2003-09-11 04:51 +0000 ged
371
- - Added example output.
959
+ 2003-07-09 unknown <unknown>
372
960
 
373
- 31 d2ff7131481d 2003-09-11 04:51 +0000 ged
374
- - Reworked to be more generically useful, and support parsing of options from
961
+ * This commit was manufactured by cvs2svn to create branch
962
+ 'FAERIEMUD_CONSORTIUM'.
963
+ [b969bf3cdcb7] <FAERIEMUD_CONSORTIUM>
375
964
 
376
- 30 a7edb22b3097 2003-09-11 04:50 +0000 ged
377
- - Added rdoc-option header.
378
-
379
- 29 ca2dcef4471a 2003-09-11 04:50 +0000 ged
380
- - Brought up-to-date with canonical source.
381
-
382
- 28 5d7d40c0bf22 2003-09-11 04:49 +0000 ged
383
- - Removed finished items.
384
-
385
- 27 865273ac947c 2003-09-11 04:48 +0000 ged
386
- - Beginnings of update for new release. Still needs more work before release.
387
-
388
- 26 0c1335f96c40 2003-09-11 04:48 +0000 ged
389
- - Added ChangeLog.
390
-
391
- 25 0d4f3e0f6b33 2003-09-11 04:25 +0000 ged
392
- Initial checkin.
393
-
394
- 24 74aa7e9f9ba8 2003-09-10 03:48 +0000 ged
395
- Initial checkin.
396
-
397
- 23 ae845807a0f4 2003-09-09 19:29 +0000 stillflame
398
- initial import
399
-
400
- 22 f2ddd83efeef 2003-08-26 10:35 +0000 ged
401
- Initial checkin.
402
-
403
- 21 724036a529a6 2003-07-11 00:36 +0000 ged
404
- - Added a Range#step 1.6 compat function.
405
-
406
- 20 32814ce3597d 2003-07-11 00:20 +0000 ged
407
- - 1.6 fixes.
408
-
409
- 19 9b7ee80b50ee 2003-07-11 00:13 +0000 ged
410
- - More 1.6ish fixes.
411
-
412
- 18 a3f5d11906de 2003-07-10 23:52 +0000 ged
413
- Made module_methods out of the backend functions to support including linguistic methods again.
414
-
415
- 17 7a7f05b223f7 2003-07-10 23:45 +0000 ged
416
- - Fixed use of Hash#merge! (1.8 feature)
417
-
418
- 16 40457b3c1a48 2003-07-10 23:38 +0000 ged
419
- - Fixed usage of Hash#merge (a 1.8 feature).
420
-
421
- 15 d11ee5810b08 2003-07-10 00:00 +0000 ged
422
- - Removed unneccessary require of test/unit/mock.
423
-
424
- 14 9c32a7e30cb0 2003-07-09 23:24 +0000 ged
425
- Initial checkin.
426
-
427
- 13 38aded3c6801 2003-07-09 21:45 +0000 ged
428
- Initial checkin.
429
-
430
- 12 76747915b8c5 2003-07-09 20:39 +0000 ged
431
- - Explicitly listed linguistics.rb so it gets documented first.
432
-
433
- 11 fcb245968c83 2003-07-09 20:39 +0000 ged
434
- - Commented out rdoc-selection code, as it doesn't work.
435
-
436
- 10 64c33b94c128 2003-07-09 20:38 +0000 ged
437
- - Fleshed out instructions for use and addition.
438
-
439
- 9 07bd25eaf347 2003-07-09 20:37 +0000 ged
440
- - RDoc fixes
441
-
442
- 8 943c544612cd 2003-07-09 20:35 +0000 ged
443
- - Made some RDoc fixes
444
-
445
- 7 509a93564b58 2003-07-09 19:30 +0000 ged
446
- - Added array-wrapping to allow single classes in the :classes config argument.
447
-
448
- 6 76b35a68af3e 2003-07-09 19:16 +0000 ged
449
- - Moved Array extension to the bottom of the file to avoid confusion, and turned on :nodoc: for it.
450
-
451
- 5 3e099b6e65ab 2003-07-09 18:24 +0000 ged
452
- - Moved into the en/ directory to separate language-specific tests from general tests.
453
-
454
- 4 86d7a993f44f 2003-07-09 16:15 +0000 ged
455
- Fixed project-grokking expression
456
-
457
- 3 2832244cb478 2003-07-09 16:13 +0000 ged
458
- Initial checkin.
459
-
460
- 2:0 12cb5587127a 2003-07-09 15:54 +0000 ged
461
- Initial checkin
462
-
463
- 1 b969bf3cdcb7 2003-07-09 14:49 +0000 unknown
464
- This commit was manufactured by cvs2svn to create branch
465
-
466
- 0 6c6bdac4c291 2003-07-09 14:49 +0000 ged
467
- Initial revision
965
+ 2003-07-09 Michael Granger <ged@FaerieMUD.org>
468
966
 
967
+ * .irbrc, Artistic, README, TODO, docs/CATALOG, experiments/api.rb,
968
+ experiments/randobjlist.rb, lib/linguistics.rb,
969
+ lib/linguistics/en.rb, lib/linguistics/iso639.rb, makedist.rb,
970
+ redist/hashslice.rb, test.rb, tests/TEMPLATE.rb.tpl,
971
+ tests/conjunction.tests.rb, tests/en/conjunction.tests.rb,
972
+ tests/en/inflect.tests.rb, tests/en_inflect.tests.rb,
973
+ tests/lingtestcase.rb, tests/use.tests.rb, utils.rb:
974
+ Initial revision
975
+ [6c6bdac4c291]