linguistics 1.0.9 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/.gemtest +0 -0
- data/ChangeLog +849 -342
- data/History.rdoc +11 -0
- data/LICENSE +9 -9
- data/Manifest.txt +44 -0
- data/README.rdoc +226 -0
- data/Rakefile +32 -349
- data/examples/endocs.rb +272 -0
- data/examples/generalize_sentence.rb +2 -1
- data/examples/klingon.rb +22 -0
- data/lib/linguistics.rb +130 -292
- data/lib/linguistics/en.rb +337 -1628
- data/lib/linguistics/en/articles.rb +138 -0
- data/lib/linguistics/en/conjugation.rb +2245 -0
- data/lib/linguistics/en/conjunctions.rb +202 -0
- data/lib/linguistics/en/{infinitive.rb → infinitives.rb} +41 -55
- data/lib/linguistics/en/linkparser.rb +41 -49
- data/lib/linguistics/en/numbers.rb +483 -0
- data/lib/linguistics/en/participles.rb +33 -0
- data/lib/linguistics/en/pluralization.rb +810 -0
- data/lib/linguistics/en/stemmer.rb +75 -0
- data/lib/linguistics/en/titlecase.rb +121 -0
- data/lib/linguistics/en/wordnet.rb +63 -97
- data/lib/linguistics/inflector.rb +89 -0
- data/lib/linguistics/iso639.rb +534 -448
- data/lib/linguistics/languagebehavior.rb +36 -0
- data/lib/linguistics/monkeypatches.rb +42 -0
- data/spec/lib/constants.rb +15 -0
- data/spec/lib/helpers.rb +38 -0
- data/spec/linguistics/en/articles_spec.rb +797 -0
- data/spec/linguistics/en/conjugation_spec.rb +2083 -0
- data/spec/linguistics/en/conjunctions_spec.rb +154 -0
- data/spec/linguistics/en/infinitives_spec.rb +518 -0
- data/spec/linguistics/en/linkparser_spec.rb +66 -0
- data/spec/linguistics/en/numbers_spec.rb +1295 -0
- data/spec/linguistics/en/participles_spec.rb +55 -0
- data/spec/linguistics/en/pluralization_spec.rb +4636 -0
- data/spec/linguistics/en/stemmer_spec.rb +72 -0
- data/spec/linguistics/en/titlecase_spec.rb +841 -0
- data/spec/linguistics/en/wordnet_spec.rb +85 -0
- data/spec/linguistics/en_spec.rb +45 -167
- data/spec/linguistics/inflector_spec.rb +40 -0
- data/spec/linguistics/iso639_spec.rb +49 -53
- data/spec/linguistics/monkeypatches_spec.rb +40 -0
- data/spec/linguistics_spec.rb +46 -76
- metadata +241 -113
- metadata.gz.sig +0 -0
- data/README +0 -166
- data/README.english +0 -245
- data/rake/191_compat.rb +0 -26
- data/rake/dependencies.rb +0 -76
- data/rake/documentation.rb +0 -123
- data/rake/helpers.rb +0 -502
- data/rake/hg.rb +0 -318
- data/rake/manual.rb +0 -787
- data/rake/packaging.rb +0 -129
- data/rake/publishing.rb +0 -341
- data/rake/style.rb +0 -62
- data/rake/svn.rb +0 -668
- data/rake/testing.rb +0 -152
- data/rake/verifytask.rb +0 -64
- data/tests/en/infinitive.tests.rb +0 -207
- data/tests/en/inflect.tests.rb +0 -1389
- data/tests/en/lafcadio.tests.rb +0 -77
- data/tests/en/linkparser.tests.rb +0 -42
- data/tests/en/lprintf.tests.rb +0 -77
- data/tests/en/titlecase.tests.rb +0 -73
- 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
|
-
|
2
|
-
|
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
|
-
|
5
|
-
|
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
|
-
|
8
|
-
|
40
|
+
* .hgtags:
|
41
|
+
Added tag v1.0.9 for changeset 5e2a8b076d59
|
42
|
+
[2737987d5471] <fixes_for_1.0>
|
9
43
|
|
10
|
-
|
11
|
-
|
44
|
+
* .hgsigs:
|
45
|
+
Added signature for changeset 48267fd4b170
|
46
|
+
[5e2a8b076d59] [v1.0.9] <fixes_for_1.0>
|
12
47
|
|
13
|
-
|
14
|
-
|
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
|
-
|
17
|
-
Updated for recent versions of RSpec.
|
53
|
+
2011-08-16 Michael Granger <ged@FaerieMUD.org>
|
18
54
|
|
19
|
-
|
20
|
-
|
55
|
+
* lib/linguistics/en/wordnet.rb, lib/linguistics/utils.rb:
|
56
|
+
Comment cleanup
|
57
|
+
[80e1b8080912]
|
21
58
|
|
22
|
-
|
23
|
-
Reordering Manifest to make check_manifest work.
|
59
|
+
2011-07-12 Michael Granger <ged@FaerieMUD.org>
|
24
60
|
|
25
|
-
|
26
|
-
|
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
|
-
|
29
|
-
|
117
|
+
* lib/linguistics/en.rb, spec/linguistics/en_spec.rb:
|
118
|
+
Adding Linguistics::EN.has_extension? for feature-testing.
|
119
|
+
[d2266b5f6c73]
|
30
120
|
|
31
|
-
|
32
|
-
Change the numbers spec to use the extension predicate
|
121
|
+
2011-01-13 Michael Granger <ged@FaerieMUD.org>
|
33
122
|
|
34
|
-
|
35
|
-
|
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
|
-
|
38
|
-
Adding Linguistics::EN.has_extension? for feature-testing.
|
129
|
+
2011-01-11 Michael Granger <ged@FaerieMUD.org>
|
39
130
|
|
40
|
-
|
41
|
-
|
131
|
+
* lib/linguistics/en/wordnet.rb:
|
132
|
+
Fix shadowed variables.
|
133
|
+
[7502d8cc69cf]
|
42
134
|
|
43
|
-
|
44
|
-
|
135
|
+
* Manifest.txt:
|
136
|
+
Updated the release manifest
|
137
|
+
[166e1d9a20dd]
|
45
138
|
|
46
|
-
|
47
|
-
|
139
|
+
* Manifest.txt:
|
140
|
+
Updating the manifest.
|
141
|
+
[12ebb23b545a]
|
48
142
|
|
49
|
-
|
50
|
-
|
143
|
+
* Rakefile:
|
144
|
+
Update the Rakefile
|
145
|
+
[63386a913414]
|
51
146
|
|
52
|
-
|
53
|
-
|
147
|
+
* project.yml:
|
148
|
+
Removing old project file
|
149
|
+
[880dfd357afb]
|
54
150
|
|
55
|
-
|
56
|
-
Removing old project file
|
151
|
+
2011-01-10 Michael Granger <ged@FaerieMUD.org>
|
57
152
|
|
58
|
-
|
59
|
-
|
153
|
+
* examples/klingon.rb:
|
154
|
+
Better comments for the klingon example
|
155
|
+
[6ba52cffd4f6]
|
60
156
|
|
61
|
-
|
62
|
-
|
157
|
+
* README.md, examples/klingon.rb:
|
158
|
+
Updating the "how to add a language module" section of the README
|
159
|
+
[bd49f872dcef]
|
63
160
|
|
64
|
-
|
65
|
-
|
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
|
-
|
68
|
-
|
569
|
+
* experiments/api.rb:
|
570
|
+
- Set svn:keyword
|
571
|
+
[37d8a6c881ee]
|
69
572
|
|
70
|
-
|
71
|
-
|
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
|
-
|
74
|
-
|
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
|
-
|
77
|
-
|
594
|
+
* experiments/TEMPLATE.rb.tpl:
|
595
|
+
Initial checkin.
|
596
|
+
[f6514ebec6a5]
|
78
597
|
|
79
|
-
|
80
|
-
Added a RSpec 2 shared behavior for testing language modules
|
598
|
+
2004-05-08 Michael Granger <ged@FaerieMUD.org>
|
81
599
|
|
82
|
-
|
83
|
-
|
600
|
+
* install.rb:
|
601
|
+
- Added compatibility with Aoki-san's install.rb. Kind of.
|
602
|
+
[ee9fdfc4c36c]
|
84
603
|
|
85
|
-
|
86
|
-
|
604
|
+
* lib/linguistics/en/linkparser.rb:
|
605
|
+
- Bugfix: Linkparser should start out missing by default.
|
606
|
+
[158cf095a9fa]
|
87
607
|
|
88
|
-
|
89
|
-
|
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
|
-
|
92
|
-
Merged in work from the 20_redesign branch
|
613
|
+
2003-10-09 Michael Granger <ged@FaerieMUD.org>
|
93
614
|
|
94
|
-
|
95
|
-
|
615
|
+
* .cvsignore:
|
616
|
+
Initial checkin.
|
617
|
+
[8a0b2a4b886e]
|
96
618
|
|
97
|
-
|
98
|
-
|
619
|
+
* install.rb:
|
620
|
+
- Updated requirements list
|
99
621
|
|
100
|
-
|
101
|
-
|
622
|
+
- Removed unnecessary readline require
|
623
|
+
[845e03b13966]
|
102
624
|
|
103
|
-
|
104
|
-
|
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
|
-
|
107
|
-
|
630
|
+
* MANIFEST:
|
631
|
+
- Wildcarded everything under lib/ so new additions don't have to be
|
632
|
+
explicitly listed.
|
108
633
|
|
109
|
-
|
110
|
-
|
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
|
-
|
113
|
-
Split out titlecase addon
|
638
|
+
2003-09-14 Michael Granger <ged@FaerieMUD.org>
|
114
639
|
|
115
|
-
|
116
|
-
|
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
|
-
|
119
|
-
|
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
|
-
|
122
|
-
|
648
|
+
2. The user of the library might wish to handle the parse failure
|
649
|
+
herself.
|
650
|
+
[f5db1fb97033]
|
123
651
|
|
124
|
-
|
125
|
-
|
652
|
+
* test.rb:
|
653
|
+
- Added redist/ to $LOAD_PATH.
|
654
|
+
[02ca82bc6984]
|
126
655
|
|
127
|
-
|
128
|
-
|
656
|
+
* lib/linguistics/en/wordnet.rb:
|
657
|
+
- Added synopsis of use to the comment header.
|
129
658
|
|
130
|
-
|
131
|
-
|
659
|
+
- Added reminder to finish documenting the auto-generated code.
|
660
|
+
[4db8df9973b4]
|
132
661
|
|
133
|
-
|
134
|
-
|
662
|
+
* lib/linguistics/en/linkparser.rb:
|
663
|
+
- Added synopsis of use to the comment header.
|
664
|
+
[6bad66b91135]
|
135
665
|
|
136
|
-
|
137
|
-
|
666
|
+
* docs/CATALOG:
|
667
|
+
- Added README.english
|
668
|
+
[634ce53493be]
|
138
669
|
|
139
|
-
|
140
|
-
|
670
|
+
* README.english:
|
671
|
+
- Fixed screwed-up code resulting from broken paste.
|
672
|
+
[fb47d6b0ded6]
|
141
673
|
|
142
|
-
|
143
|
-
|
674
|
+
* README:
|
675
|
+
- Added mention of README.english.
|
676
|
+
[7146ca3eebfc]
|
144
677
|
|
145
|
-
|
146
|
-
|
678
|
+
* lib/linguistics/en.rb:
|
679
|
+
- Removed redundant mention of the WordNet module from the comment
|
680
|
+
header.
|
681
|
+
[9881c8ad3958]
|
147
682
|
|
148
|
-
|
149
|
-
|
683
|
+
* lib/linguistics/en/linkparser.rb:
|
684
|
+
- Fixed the comment header some more.
|
685
|
+
[7aaa4bd062f6]
|
150
686
|
|
151
|
-
|
152
|
-
|
687
|
+
* install.rb:
|
688
|
+
- Now installs the stuff in redist/ too.
|
689
|
+
[5eac6f24970e]
|
153
690
|
|
154
|
-
|
155
|
-
|
691
|
+
* MANIFEST:
|
692
|
+
- Changed pattern for the redist directory to catch any .rb files.
|
693
|
+
[1ca51228553c]
|
156
694
|
|
157
|
-
|
158
|
-
|
695
|
+
* lib/linguistics/en/infinitive.rb:
|
696
|
+
- Fixed names of constants to reduce the chances of collision.
|
697
|
+
[a790dfd55178]
|
159
698
|
|
160
|
-
|
161
|
-
|
699
|
+
* redist/crosscase.rb:
|
700
|
+
Initial checkin from version 0.01 of CrossCase.
|
701
|
+
[e9b089d13462]
|
162
702
|
|
163
|
-
|
164
|
-
|
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
|
-
|
167
|
-
|
708
|
+
* lib/linguistics/en.rb:
|
709
|
+
- Added CrossCase require/include to provide under_barred aliasing
|
710
|
+
for camelCase functions.
|
711
|
+
[2c428d7f5cf8]
|
168
712
|
|
169
|
-
|
170
|
-
|
713
|
+
* README:
|
714
|
+
- Added Martin to the Authors list.
|
171
715
|
|
172
|
-
|
173
|
-
|
716
|
+
- Updated optional list.
|
717
|
+
[ea35375458c6]
|
174
718
|
|
175
|
-
|
176
|
-
|
719
|
+
* README.english:
|
720
|
+
Initial checkin.
|
721
|
+
[30d897f7238c]
|
177
722
|
|
178
|
-
|
179
|
-
|
723
|
+
* lib/linguistics/en/linkparser.rb:
|
724
|
+
- Touched up the file description a bit.
|
180
725
|
|
181
|
-
|
182
|
-
Added signature for changeset 401a04c4cf43
|
726
|
+
- @lpError now intitialized: bug spotted by Martin Chase.
|
183
727
|
|
184
|
-
|
185
|
-
|
728
|
+
- Calls to #linkParse no longer trap parse errors. This was done for
|
729
|
+
two reasons:
|
186
730
|
|
187
|
-
|
188
|
-
|
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
|
-
|
191
|
-
|
735
|
+
2. The user of the library might wish to handle the parse failure
|
736
|
+
herself.
|
737
|
+
[e305e6d5c5f6]
|
192
738
|
|
193
|
-
|
194
|
-
* Updated build system.
|
739
|
+
2003-09-11 Michael Granger <ged@FaerieMUD.org>
|
195
740
|
|
196
|
-
|
197
|
-
|
741
|
+
* ChangeLog:
|
742
|
+
Checkpoint commit
|
743
|
+
[9c2ff236f6b1]
|
198
744
|
|
199
|
-
|
200
|
-
|
745
|
+
* tests/en/inflect.tests.rb:
|
746
|
+
- Added test for functional interface to auto-generated code.
|
201
747
|
|
202
|
-
|
203
|
-
|
748
|
+
- Removed tests of the 'use' function into their own test case.
|
749
|
+
[c67f784e7948]
|
204
750
|
|
205
|
-
|
206
|
-
|
751
|
+
* tests/en/conjunction.tests.rb:
|
752
|
+
- Added test for functional interface to auto-generated code.
|
753
|
+
[4d6e8b90bcb0]
|
207
754
|
|
208
|
-
|
209
|
-
|
755
|
+
* lib/linguistics/en/wordnet.rb, tests/en/infinitive.tests.rb:
|
756
|
+
Initial checkin.
|
757
|
+
[6f71252ff658]
|
210
758
|
|
211
|
-
|
212
|
-
|
759
|
+
* tests/use.tests.rb:
|
760
|
+
- Fixed require block at the top.
|
213
761
|
|
214
|
-
|
215
|
-
|
762
|
+
- Changed name of intermediate class to reflect change in
|
763
|
+
linguistics.rb.
|
216
764
|
|
217
|
-
|
218
|
-
|
765
|
+
- Fixed 1.8 complaint.
|
766
|
+
[8eb3e2977dd5]
|
219
767
|
|
220
|
-
|
221
|
-
|
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
|
-
|
224
|
-
|
774
|
+
* tests/TEMPLATE.rb.tpl:
|
775
|
+
- Fixed leftover comment from copy.
|
776
|
+
[743382c087e6]
|
225
777
|
|
226
|
-
|
227
|
-
|
778
|
+
* lib/linguistics/iso639.rb:
|
779
|
+
- Fixed typo.
|
780
|
+
[23790f38a0cb]
|
228
781
|
|
229
|
-
|
230
|
-
|
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
|
-
|
233
|
-
|
786
|
+
- Added requires for new extensions 'wordnet', 'linkparser', and
|
787
|
+
'infinitive'.
|
234
788
|
|
235
|
-
|
236
|
-
|
789
|
+
- Updated docs in the header, though they're not yet ready for
|
790
|
+
release.
|
791
|
+
[9a7bed5457b2]
|
237
792
|
|
238
|
-
|
239
|
-
|
793
|
+
* lib/linguistics.rb:
|
794
|
+
- Changed name of "inflector" class to "languageProxy" to better fit
|
795
|
+
what it does.
|
240
796
|
|
241
|
-
|
242
|
-
Initial checkin. Fixes #3.
|
797
|
+
- Added support for transparent delegator proxy methods.
|
243
798
|
|
244
|
-
|
245
|
-
|
799
|
+
- Added support for MyClass::extend( Linguistics ) and class
|
800
|
+
MyClass; include Linguistics; end.
|
246
801
|
|
247
|
-
|
248
|
-
|
802
|
+
- Modified code in #loadLanguage to minimize the number of requires.
|
803
|
+
[579fb11da29c]
|
249
804
|
|
250
|
-
|
251
|
-
|
805
|
+
* .irbrc:
|
806
|
+
- Added :installProxy config to the #use call.
|
807
|
+
[5d62e88eabf3]
|
252
808
|
|
253
|
-
|
254
|
-
|
809
|
+
* experiments/generalize.rb, experiments/wn-proglang.rb:
|
810
|
+
Initial checkin.
|
811
|
+
[28370746e077]
|
255
812
|
|
256
|
-
|
257
|
-
|
813
|
+
* experiments/allobjlist.rb:
|
814
|
+
- Added example output.
|
815
|
+
[e75da92bfb98]
|
258
816
|
|
259
|
-
|
260
|
-
|
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
|
-
|
263
|
-
|
822
|
+
* docs/CATALOG:
|
823
|
+
- Added rdoc-option header.
|
824
|
+
[a7edb22b3097]
|
264
825
|
|
265
|
-
|
266
|
-
|
826
|
+
* utils.rb:
|
827
|
+
- Brought up-to-date with canonical source.
|
828
|
+
[ca2dcef4471a]
|
267
829
|
|
268
|
-
|
269
|
-
|
830
|
+
* TODO:
|
831
|
+
- Removed finished items.
|
832
|
+
[5d7d40c0bf22]
|
270
833
|
|
271
|
-
|
272
|
-
|
834
|
+
* README:
|
835
|
+
- Beginnings of update for new release. Still needs more work before
|
836
|
+
release.
|
837
|
+
[865273ac947c]
|
273
838
|
|
274
|
-
|
275
|
-
|
839
|
+
* MANIFEST:
|
840
|
+
- Added ChangeLog.
|
841
|
+
[0c1335f96c40]
|
276
842
|
|
277
|
-
|
278
|
-
|
843
|
+
* lib/linguistics/en/infinitive.rb, lib/linguistics/en/linkparser.rb:
|
844
|
+
Initial checkin.
|
845
|
+
[0d4f3e0f6b33]
|
279
846
|
|
280
|
-
|
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
|
-
|
284
|
-
|
849
|
+
* tests/en/wordnet.tests.rb:
|
850
|
+
Initial checkin.
|
851
|
+
[74aa7e9f9ba8]
|
285
852
|
|
286
|
-
|
287
|
-
- Added synopsis of use to the comment header.
|
853
|
+
2003-09-09 Martin Chase <stillflame@FaerieMUD.org>
|
288
854
|
|
289
|
-
|
290
|
-
|
855
|
+
* tests/en/linkparser.tests.rb:
|
856
|
+
initial import
|
857
|
+
[ae845807a0f4]
|
291
858
|
|
292
|
-
|
293
|
-
- Added README.english
|
859
|
+
2003-08-26 Michael Granger <ged@FaerieMUD.org>
|
294
860
|
|
295
|
-
|
296
|
-
|
861
|
+
* docs/.cvsignore:
|
862
|
+
Initial checkin.
|
863
|
+
[f2ddd83efeef]
|
297
864
|
|
298
|
-
|
299
|
-
- Added mention of README.english.
|
865
|
+
2003-07-11 Michael Granger <ged@FaerieMUD.org>
|
300
866
|
|
301
|
-
|
302
|
-
|
867
|
+
* lib/linguistics/en.rb:
|
868
|
+
- Added a Range#step 1.6 compat function.
|
869
|
+
[724036a529a6]
|
303
870
|
|
304
|
-
|
305
|
-
|
871
|
+
* tests/use.tests.rb:
|
872
|
+
- 1.6 fixes.
|
873
|
+
[32814ce3597d]
|
306
874
|
|
307
|
-
|
308
|
-
|
875
|
+
* lib/linguistics.rb:
|
876
|
+
- More 1.6ish fixes.
|
877
|
+
[9b7ee80b50ee]
|
309
878
|
|
310
|
-
|
311
|
-
- Changed pattern for the redist directory to catch any .rb files.
|
879
|
+
2003-07-10 Michael Granger <ged@FaerieMUD.org>
|
312
880
|
|
313
|
-
|
314
|
-
|
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
|
-
|
317
|
-
|
886
|
+
* lib/linguistics.rb:
|
887
|
+
- Fixed use of Hash#merge! (1.8 feature)
|
888
|
+
[7a7f05b223f7]
|
318
889
|
|
319
|
-
|
320
|
-
|
890
|
+
* lib/linguistics/en.rb:
|
891
|
+
- Fixed usage of Hash#merge (a 1.8 feature).
|
892
|
+
[40457b3c1a48]
|
321
893
|
|
322
|
-
|
323
|
-
|
894
|
+
* tests/lingtestcase.rb:
|
895
|
+
- Removed unneccessary require of test/unit/mock.
|
896
|
+
[d11ee5810b08]
|
324
897
|
|
325
|
-
|
326
|
-
- Added Martin to the Authors list.
|
898
|
+
2003-07-09 Michael Granger <ged@FaerieMUD.org>
|
327
899
|
|
328
|
-
|
329
|
-
|
900
|
+
* MANIFEST:
|
901
|
+
Initial checkin.
|
902
|
+
[9c32a7e30cb0]
|
330
903
|
|
331
|
-
|
332
|
-
|
904
|
+
* install.rb:
|
905
|
+
Initial checkin.
|
906
|
+
[38aded3c6801]
|
333
907
|
|
334
|
-
|
335
|
-
|
908
|
+
* docs/CATALOG:
|
909
|
+
- Explicitly listed linguistics.rb so it gets documented first.
|
910
|
+
[76747915b8c5]
|
336
911
|
|
337
|
-
|
338
|
-
|
912
|
+
* utils.rb:
|
913
|
+
- Commented out rdoc-selection code, as it doesn't work.
|
914
|
+
[fcb245968c83]
|
339
915
|
|
340
|
-
|
341
|
-
|
916
|
+
* README:
|
917
|
+
- Fleshed out instructions for use and addition.
|
918
|
+
[64c33b94c128]
|
342
919
|
|
343
|
-
|
344
|
-
|
920
|
+
* Artistic, lib/linguistics.rb, tests/use.tests.rb:
|
921
|
+
- RDoc fixes
|
922
|
+
[07bd25eaf347]
|
345
923
|
|
346
|
-
|
347
|
-
|
924
|
+
* lib/linguistics/iso639.rb:
|
925
|
+
- Made some RDoc fixes
|
926
|
+
[943c544612cd]
|
348
927
|
|
349
|
-
|
350
|
-
|
928
|
+
* lib/linguistics.rb:
|
929
|
+
- Added array-wrapping to allow single classes in the :classes
|
930
|
+
config argument.
|
351
931
|
|
352
|
-
|
353
|
-
|
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
|
-
|
356
|
-
|
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
|
-
|
359
|
-
|
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
|
-
|
362
|
-
|
947
|
+
* makedist.rb:
|
948
|
+
Fixed project-grokking expression
|
949
|
+
[86d7a993f44f]
|
363
950
|
|
364
|
-
|
365
|
-
|
951
|
+
* docs/makedocs.rb:
|
952
|
+
Initial checkin.
|
953
|
+
[2832244cb478]
|
366
954
|
|
367
|
-
|
368
|
-
|
955
|
+
* experiments/allobjlist.rb, experiments/farmobjs.rb:
|
956
|
+
Initial checkin
|
957
|
+
[12cb5587127a]
|
369
958
|
|
370
|
-
|
371
|
-
- Added example output.
|
959
|
+
2003-07-09 unknown <unknown>
|
372
960
|
|
373
|
-
|
374
|
-
|
961
|
+
* This commit was manufactured by cvs2svn to create branch
|
962
|
+
'FAERIEMUD_CONSORTIUM'.
|
963
|
+
[b969bf3cdcb7] <FAERIEMUD_CONSORTIUM>
|
375
964
|
|
376
|
-
|
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]
|