linkparser 2.1.0 → 2.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/History.md +20 -0
- data/README.md +23 -6
- data/ext/{dictionary.c → linkparser_ext/dictionary.c} +3 -3
- data/ext/{extconf.rb → linkparser_ext/extconf.rb} +3 -0
- data/ext/{linkage.c → linkparser_ext/linkage.c} +6 -9
- data/ext/{linkparser.c → linkparser_ext/linkparser.c} +26 -4
- data/ext/{linkparser.h → linkparser_ext/linkparser.h} +1 -1
- data/ext/{parseoptions.c → linkparser_ext/parseoptions.c} +15 -4
- data/ext/{sentence.c → linkparser_ext/sentence.c} +3 -3
- data/lib/linkparser/dictionary.rb +1 -1
- data/lib/linkparser/linkage.rb +1 -1
- data/lib/linkparser/mixins.rb +1 -1
- data/lib/linkparser/parseoptions.rb +1 -1
- data/lib/linkparser/sentence.rb +1 -1
- data/lib/linkparser.rb +3 -3
- data/spec/bugfixes_spec.rb +1 -1
- data/spec/helpers.rb +1 -1
- data/spec/linkparser/dictionary_spec.rb +1 -1
- data/spec/linkparser/linkage_spec.rb +19 -16
- data/spec/linkparser/mixins_spec.rb +1 -1
- data/spec/linkparser/parseoptions_spec.rb +2 -2
- data/spec/linkparser/sentence_spec.rb +1 -1
- data/spec/linkparser_spec.rb +6 -1
- data.tar.gz.sig +0 -0
- metadata +61 -138
- metadata.gz.sig +0 -0
- data/.gemtest +0 -0
- data/.simplecov +0 -9
- data/ChangeLog +0 -882
- data/LICENSE +0 -27
- data/Manifest.txt +0 -29
- data/Rakefile +0 -131
data/ChangeLog
DELETED
@@ -1,882 +0,0 @@
|
|
1
|
-
2017-12-31 Michael Granger <ged@FaerieMUD.org>
|
2
|
-
|
3
|
-
* .hgignore, experiments/diagram_hang.c, ext/sentence.c,
|
4
|
-
linkparser.gemspec, spec/linkparser/linkage_spec.rb,
|
5
|
-
spec/linkparser/parseoptions_spec.rb:
|
6
|
-
Fix some stuff for the latest version of link-grammar.
|
7
|
-
|
8
|
-
- Bump testing Ruby to 2.5
|
9
|
-
- Add a workaround and minimal test case for opencog/link-grammar#626
|
10
|
-
- Fix a double-free in sentence
|
11
|
-
- Fix specs for link-grammar built without hunspell
|
12
|
-
[ba2931648b42] [tip]
|
13
|
-
|
14
|
-
2017-12-11 Michael Granger <ged@FaerieMUD.org>
|
15
|
-
|
16
|
-
* README.md, Rakefile, linkparser.gemspec:
|
17
|
-
Fix docs task, update URLs and copyright date.
|
18
|
-
[4c5ba924dbbc] [github/master]
|
19
|
-
|
20
|
-
* .ruby-version, README.md, Rakefile, ext/dictionary.c, ext/linkage.c,
|
21
|
-
ext/linkparser.c, ext/sentence.c, lib/linkparser/linkage.rb,
|
22
|
-
lib/linkparser/sentence.rb, linkparser.gemspec,
|
23
|
-
spec/linkparser/linkage_spec.rb,
|
24
|
-
spec/linkparser/parseoptions_spec.rb:
|
25
|
-
Fix a bunch of small issues and update it.
|
26
|
-
|
27
|
-
- Bump testing Ruby to 2.5.
|
28
|
-
- Convert documents to Markdown
|
29
|
-
- Eliminate weird calls to rb_funcall with explicit null pointers.
|
30
|
-
- Move class docs to the C source.
|
31
|
-
- Eliminate use of deprecated Fixnum constant
|
32
|
-
- Fix an empty raise_error in the specs
|
33
|
-
[b3d1301b7235]
|
34
|
-
|
35
|
-
* certs/ged.pem:
|
36
|
-
Update gem-signing cert
|
37
|
-
[ea3465a0ea85]
|
38
|
-
|
39
|
-
2016-09-01 Michael Granger <ged@FaerieMUD.org>
|
40
|
-
|
41
|
-
* LICENSE, README.md:
|
42
|
-
Update copyright dates.
|
43
|
-
[822f4274757d]
|
44
|
-
|
45
|
-
* Rakefile, certs/ged.pem, linkparser.gemspec:
|
46
|
-
Add my public cert.
|
47
|
-
[256829f8b5b8]
|
48
|
-
|
49
|
-
* spec/linkparser/linkage_spec.rb:
|
50
|
-
Fix a spec that just required a bit of whitespace-stripping.
|
51
|
-
[50d0ec0db277]
|
52
|
-
|
53
|
-
* spec/linkparser/linkage_spec.rb:
|
54
|
-
Update specs for Link Grammar 5.3.0 and later.
|
55
|
-
[b0a38a25b55d]
|
56
|
-
|
57
|
-
* ext/extconf.rb:
|
58
|
-
Fix LinkParser.link_grammar_version
|
59
|
-
|
60
|
-
This previously always reported "link-grammar-4.3.9-or-earlier"
|
61
|
-
because I forgot to actually check for the required function in
|
62
|
-
extconf.rb.
|
63
|
-
[c44cab6fee00]
|
64
|
-
|
65
|
-
* .gems, .ruby-gemset, .ruby-version, .rvm.gems, .rvmrc,
|
66
|
-
linkparser.gemspec:
|
67
|
-
Change rvm-specific env files to generic ones, and update to Ruby
|
68
|
-
2.3
|
69
|
-
[844186d04685]
|
70
|
-
|
71
|
-
2015-03-12 Michael Granger <ged@FaerieMUD.org>
|
72
|
-
|
73
|
-
* .hgtags:
|
74
|
-
Added tag v2.0.0 for changeset d8bf03d36ab3
|
75
|
-
[83fca2c2956c]
|
76
|
-
|
77
|
-
* .hgsigs:
|
78
|
-
Added signature for changeset 2d792b205a62
|
79
|
-
[d8bf03d36ab3] [v2.0.0]
|
80
|
-
|
81
|
-
* README.md:
|
82
|
-
Made a note of the license of link-grammar in the README
|
83
|
-
[2d792b205a62]
|
84
|
-
|
85
|
-
* History.md, linkparser.gemspec:
|
86
|
-
Updated the history file in preparation for release.
|
87
|
-
[fdc841eae602]
|
88
|
-
|
89
|
-
2015-03-02 Michael Granger <ged@FaerieMUD.org>
|
90
|
-
|
91
|
-
* .travis.yml:
|
92
|
-
Use the default rake script for the Travis build
|
93
|
-
[d717e0ff8649]
|
94
|
-
|
95
|
-
* Gemfile, History.md, README.md, Rakefile,
|
96
|
-
experiments/diagram_sentences.rb, ext/dictionary.c,
|
97
|
-
ext/linkparser.c, ext/linkparser.h, linkparser.gemspec:
|
98
|
-
Update/fix build files.
|
99
|
-
[85300de8d84c]
|
100
|
-
|
101
|
-
* .pryrc, .rvm.gems, .rvmrc, .simplecov, .tm_properties, .travis.yml,
|
102
|
-
History.md, History.rdoc, Manifest.txt, README.md, README.rdoc,
|
103
|
-
Rakefile, examples/basic-api.rb, examples/readme-example.rb,
|
104
|
-
experiments/build_linktype_hash.rb,
|
105
|
-
experiments/diagram_sentences.rb, ext/dictionary.c, ext/extconf.rb,
|
106
|
-
ext/linkage.c, ext/linkparser.c, ext/linkparser.h,
|
107
|
-
ext/parseoptions.c, ext/sentence.c, lib/linkparser.rb,
|
108
|
-
lib/linkparser/dictionary.rb, lib/linkparser/linkage.rb,
|
109
|
-
lib/linkparser/mixins.rb, lib/linkparser/parseoptions.rb,
|
110
|
-
lib/linkparser/sentence.rb, spec/bugfixes_spec.rb, spec/helpers.rb,
|
111
|
-
spec/linkparser/dictionary_spec.rb, spec/linkparser/linkage_spec.rb,
|
112
|
-
spec/linkparser/mixins_spec.rb,
|
113
|
-
spec/linkparser/parseoptions_spec.rb,
|
114
|
-
spec/linkparser/sentence_spec.rb, spec/linkparser_spec.rb:
|
115
|
-
Update for latest Ruby and link-grammar
|
116
|
-
[92228378be38]
|
117
|
-
|
118
|
-
2013-02-25 Michael Granger <ged@FaerieMUD.org>
|
119
|
-
|
120
|
-
* .rvmrc:
|
121
|
-
Test under Ruby 2 by default.
|
122
|
-
[9f95dae5c1a0]
|
123
|
-
|
124
|
-
* Rakefile:
|
125
|
-
Use RbConfig instead of deprecated Config module
|
126
|
-
[7a3166b6bfb7]
|
127
|
-
|
128
|
-
2013-01-11 Michael Granger <ged@FaerieMUD.org>
|
129
|
-
|
130
|
-
* Merge pull request #5 from egtann/improved-readme
|
131
|
-
|
132
|
-
Fixed formatting in the examples section of the README
|
133
|
-
[5b7f098d2d8a]
|
134
|
-
|
135
|
-
2012-07-21 Evan Tann <egtann@gmail.com>
|
136
|
-
|
137
|
-
* README.rdoc:
|
138
|
-
Fixing a spacing issue under Example Usage
|
139
|
-
[217df54f42d7]
|
140
|
-
|
141
|
-
* README.rdoc:
|
142
|
-
Improved formatting for Github markdown
|
143
|
-
[a42ca1b29189]
|
144
|
-
|
145
|
-
2012-10-10 Michael Granger <ged@FaerieMUD.org>
|
146
|
-
|
147
|
-
* .hgtags:
|
148
|
-
Added tag v1.1.4 for changeset ddf1b289fe82
|
149
|
-
[0aba6078aca1]
|
150
|
-
|
151
|
-
* .hgsigs:
|
152
|
-
Added signature for changeset 370fd7d741fb
|
153
|
-
[ddf1b289fe82] [v1.1.4]
|
154
|
-
|
155
|
-
2012-08-07 Michael Granger <ged@FaerieMUD.org>
|
156
|
-
|
157
|
-
* .rvm.gems:
|
158
|
-
Update dev gems
|
159
|
-
[370fd7d741fb]
|
160
|
-
|
161
|
-
* .rvmrc:
|
162
|
-
Omit the patch version from the rvmrc
|
163
|
-
[a405ed23976a]
|
164
|
-
|
165
|
-
2012-02-10 Michael Granger <ged@FaerieMUD.org>
|
166
|
-
|
167
|
-
* Rakefile:
|
168
|
-
Include the extension source in the generated docs
|
169
|
-
[8fe6f359af08]
|
170
|
-
|
171
|
-
* .pryrc:
|
172
|
-
Adding a Pry rcfile
|
173
|
-
[e7c8cf2eb408]
|
174
|
-
|
175
|
-
2012-01-31 Michael Granger <ged@FaerieMUD.org>
|
176
|
-
|
177
|
-
* .hgignore, History.md, History.rdoc, Manifest.txt, README.md,
|
178
|
-
README.rdoc, Rakefile, lib/linkparser.rb, lib/linkparser/mixins.rb:
|
179
|
-
RDoc update, remove some leftover Yard crap.
|
180
|
-
[c634b27f04fd]
|
181
|
-
|
182
|
-
* .hgtags:
|
183
|
-
Added tag v1.1.1 for changeset 34e6016a5772
|
184
|
-
[4f512621db04]
|
185
|
-
|
186
|
-
* .hgsigs:
|
187
|
-
Added signature for changeset 34e6016a5772
|
188
|
-
[6dcf188c7d5e]
|
189
|
-
|
190
|
-
* .autotest, .rvm.gems, .rvmrc, Manifest.txt, Rakefile:
|
191
|
-
Adding a project .rvmrc and gemset, updating deps.
|
192
|
-
[4fd8e3d7c1dc]
|
193
|
-
|
194
|
-
2011-05-16 Michael Granger <ged@FaerieMUD.org>
|
195
|
-
|
196
|
-
* .hgtags:
|
197
|
-
Added tag v1.1.3 for changeset 7cf658966f66
|
198
|
-
[70460dd6fc23]
|
199
|
-
|
200
|
-
* .hgsigs:
|
201
|
-
Added signature for changeset 62a876f376d4
|
202
|
-
[7cf658966f66] [v1.1.3]
|
203
|
-
|
204
|
-
* lib/linkparser.rb:
|
205
|
-
Bump patch version for packaging fixes.
|
206
|
-
[62a876f376d4]
|
207
|
-
|
208
|
-
* Rakefile:
|
209
|
-
Use a relative path for path constants (Alessandro Berardi), update
|
210
|
-
deps
|
211
|
-
[5cb1c40b32be]
|
212
|
-
|
213
|
-
2011-05-12 Michael Granger <ged@FaerieMUD.org>
|
214
|
-
|
215
|
-
* .hgtags:
|
216
|
-
Added tag v1.1.2 for changeset dc1f658653c5
|
217
|
-
[c29cb448e28d]
|
218
|
-
|
219
|
-
* .hgsigs:
|
220
|
-
Added signature for changeset a22b9ce4e964
|
221
|
-
[dc1f658653c5] [v1.1.2]
|
222
|
-
|
223
|
-
* lib/linkparser.rb:
|
224
|
-
Bump patch version for release.
|
225
|
-
[a22b9ce4e964]
|
226
|
-
|
227
|
-
* Merge pull request #2 from AlessandroBerardi/patch-1
|
228
|
-
|
229
|
-
Fixes package configuration options concatenation bug
|
230
|
-
[445659b4f1b0]
|
231
|
-
|
232
|
-
2011-05-11 Alessandro Berardi <berardialessandro@gmail.com>
|
233
|
-
|
234
|
-
* ext/extconf.rb:
|
235
|
-
Fixes package configuration options concatenation bug (see
|
236
|
-
http://stackoverflow.com/questions/5131716/problem-installing-
|
237
|
-
linkparser-on-ubuntu-10)
|
238
|
-
[4b007cb0b88d]
|
239
|
-
|
240
|
-
2011-04-04 Michael Granger <ged@FaerieMUD.org>
|
241
|
-
|
242
|
-
* docs/basic-api.rb, examples/basic-api.rb, examples/readme-
|
243
|
-
example.rb, misc/readme-example.rb:
|
244
|
-
Consolidate examples under an examples/ directory
|
245
|
-
[ed079ae141d5]
|
246
|
-
|
247
|
-
* Rakefile:
|
248
|
-
The rake-compiler target lives in the LIBDIR, not the EXTDIR.
|
249
|
-
[522421b6ed6e]
|
250
|
-
|
251
|
-
* Rakefile:
|
252
|
-
Fixed the gemtest workaround in the Rakefile
|
253
|
-
[543559d41600]
|
254
|
-
|
255
|
-
* README.md:
|
256
|
-
README doesn't need to be executable
|
257
|
-
[731894db5b82]
|
258
|
-
|
259
|
-
* ext/linkparser.h:
|
260
|
-
Fix the includes (local vs. system)
|
261
|
-
[65471608cc6e]
|
262
|
-
|
263
|
-
* Rakefile:
|
264
|
-
Make the Rakefile more generically-useful
|
265
|
-
[e6207a7e6552]
|
266
|
-
|
267
|
-
* README.md:
|
268
|
-
Clean up the README
|
269
|
-
[41e337b64d61]
|
270
|
-
|
271
|
-
* Manifest.txt:
|
272
|
-
Remove miscellaneous examples from the gem manifest
|
273
|
-
[e519c557f837]
|
274
|
-
|
275
|
-
2011-03-10 Michael Granger <ged@FaerieMUD.org>
|
276
|
-
|
277
|
-
* LICENSE, README.md:
|
278
|
-
Updated license dates.
|
279
|
-
[7de1da168b3f]
|
280
|
-
|
281
|
-
* .gemtest, Manifest.txt, Rakefile:
|
282
|
-
Build cleanup, added gem-testers support
|
283
|
-
* Remove YARD stuff from the Rakefile, as it causes more harm than
|
284
|
-
good
|
285
|
-
* Added a 'test' task that works around rake-compiler problems with
|
286
|
-
'gem test'
|
287
|
-
* Added maintainer-mode task
|
288
|
-
* Updated Manifest, removed :prerelease hook to gen the ChangeLog, as
|
289
|
-
it's now in the manifest.
|
290
|
-
* Updated the dev copy of link-grammar to 4.7.4.
|
291
|
-
[0705b397a9ac]
|
292
|
-
|
293
|
-
* .irbrc:
|
294
|
-
Simplified .irbrc
|
295
|
-
[1e25996615f2]
|
296
|
-
|
297
|
-
* linkparser/README.md, linkparser/bin/linkparser,
|
298
|
-
linkparser/lib/linkparser.rb, linkparser/spec/linkparser_spec.rb:
|
299
|
-
Removing unintentionally-committed artifact of the conversion to Hoe
|
300
|
-
[196b282f9013]
|
301
|
-
|
302
|
-
2011-01-19 Michael Granger <ged@FaerieMUD.org>
|
303
|
-
|
304
|
-
* ext/linkparser.h:
|
305
|
-
Removed unnecessary (and non-existant on Ruby < 1.9) include.
|
306
|
-
[e4107bc10ca6]
|
307
|
-
|
308
|
-
2011-01-11 Michael Granger <ged@FaerieMUD.org>
|
309
|
-
|
310
|
-
* lib/linkparser/linkage.rb:
|
311
|
-
Fixing some shadowed variables for 1.9.2.
|
312
|
-
[507ef20fc315]
|
313
|
-
|
314
|
-
* lib/linkparser.rb, lib/linkparser/linkage.rb,
|
315
|
-
lib/linkparser/sentence.rb:
|
316
|
-
Avoid circular requires.
|
317
|
-
[23a39531870a]
|
318
|
-
|
319
|
-
2010-12-30 Michael Granger <ged@FaerieMUD.org>
|
320
|
-
|
321
|
-
* .hgsubstate:
|
322
|
-
Cleanup subrepo state
|
323
|
-
[34e6016a5772] [v1.1.1]
|
324
|
-
|
325
|
-
* .hgsub, .hgsubstate:
|
326
|
-
Removing rake tasklibs subrepo
|
327
|
-
[87ef0e56e78f]
|
328
|
-
|
329
|
-
* .autotest, .irbrc, History.md, Manifest.txt, README.md, Rakefile,
|
330
|
-
Rakefile.local, ext/extconf.rb, lib/linkparser.rb,
|
331
|
-
linkparser/README.md, linkparser/bin/linkparser,
|
332
|
-
linkparser/lib/linkparser.rb, linkparser/spec/linkparser_spec.rb,
|
333
|
-
project.yml, spec/TEMPLATE.rb.tpl, spec/linkparser/linkage_spec.rb:
|
334
|
-
Updated for link-grammar 4.7.1, specs cleanup and fixes, converted
|
335
|
-
to Hoe.
|
336
|
-
[7af8c401b107]
|
337
|
-
|
338
|
-
* .hgtags:
|
339
|
-
Added tag v1.0.6 for changeset e9a639fee32a
|
340
|
-
[250810c6118b]
|
341
|
-
|
342
|
-
2010-12-09 Michael Granger <ged@FaerieMUD.org>
|
343
|
-
|
344
|
-
* .hgignore, README.md:
|
345
|
-
Ignore the yard cache, and fix the version mentioned in the README.
|
346
|
-
[fc506a11f249]
|
347
|
-
|
348
|
-
2010-11-30 Michael Granger <ged@FaerieMUD.org>
|
349
|
-
|
350
|
-
* .hgtags:
|
351
|
-
Added tag v1.1.0 for changeset 8d9184b82361
|
352
|
-
[0e62b77cd5ad]
|
353
|
-
|
354
|
-
* .hgsigs:
|
355
|
-
Added signature for changeset 2f318af09702
|
356
|
-
[5852e8f31971] [v1.1.0]
|
357
|
-
|
358
|
-
* .hgsubstate, INSTALL, README, README.md, Rakefile, utils.rb:
|
359
|
-
Cleanup in preparation for release.
|
360
|
-
[a4831a8377aa]
|
361
|
-
|
362
|
-
2010-11-24 Michael Granger <ged@FaerieMUD.org>
|
363
|
-
|
364
|
-
* .hgsubstate, ext/extconf.rb, ext/linkage.c, lib/linkparser.rb,
|
365
|
-
lib/linkparser/linkage.rb, lib/linkparser/mixins.rb,
|
366
|
-
spec/linkparser/dictionary_spec.rb, spec/linkparser/linkage_spec.rb,
|
367
|
-
spec/linkparser/mixins_spec.rb,
|
368
|
-
spec/linkparser/parseoptions_spec.rb:
|
369
|
-
Updated for 4.7.0.
|
370
|
-
* Bumped version to 1.1.0 to reflect API changes
|
371
|
-
* Updated to support 4.7.0's new-style conjunctions, which deprecates
|
372
|
-
the functions used to specify sublinkages. See
|
373
|
-
http://www.abisource.com/projects/link-
|
374
|
-
grammar/dict/coordination.html for details.
|
375
|
-
[54e4e2ff8899]
|
376
|
-
|
377
|
-
2010-11-22 Michael Granger <ged@FaerieMUD.org>
|
378
|
-
|
379
|
-
* .hgsub, .hgsubstate:
|
380
|
-
Adding the rake tasklibs as a subrepo
|
381
|
-
[f41f707e7028]
|
382
|
-
|
383
|
-
* Rakefile, project.yml, spec/TEMPLATE.rb.tpl, spec/bugfixes_spec.rb,
|
384
|
-
spec/linkparser/dictionary_spec.rb, spec/linkparser/linkage_spec.rb,
|
385
|
-
spec/linkparser/parseoptions_spec.rb,
|
386
|
-
spec/linkparser/sentence_spec.rb, spec/linkparser_spec.rb:
|
387
|
-
Checkpoint commit after updating to 4.7.0
|
388
|
-
[1eddd00723e6]
|
389
|
-
|
390
|
-
2010-10-15 Michael Granger <ged@FaerieMUD.org>
|
391
|
-
|
392
|
-
* ext/extconf.rb, lib/linkparser.rb:
|
393
|
-
Make the extconf use pkgconfig, if available, and add support for
|
394
|
-
fat binary gems.
|
395
|
-
[f9fadebcab0d]
|
396
|
-
|
397
|
-
2010-10-12 Michael Granger <ged@FaerieMUD.org>
|
398
|
-
|
399
|
-
* .hgignore, ChangeLog, LICENSE, Rakefile, Rakefile.local,
|
400
|
-
ext/dictionary.c, ext/extconf.rb, ext/linkage.c, ext/linkparser.c,
|
401
|
-
ext/linkparser.h, ext/parseoptions.c, ext/sentence.c,
|
402
|
-
lib/linkparser/linkage.rb, spec/bugfixes_spec.rb,
|
403
|
-
spec/linkparser/dictionary_spec.rb, spec/linkparser/linkage_spec.rb,
|
404
|
-
spec/linkparser/parseoptions_spec.rb,
|
405
|
-
spec/linkparser/sentence_spec.rb, spec/linkparser_spec.rb:
|
406
|
-
Memory-management fixes, updated for link-grammar 4.6.7, 1.9.2
|
407
|
-
fixes.
|
408
|
-
[21df914cedb1]
|
409
|
-
|
410
|
-
2010-04-28 Michael Granger <ged@FaerieMUD.org>
|
411
|
-
|
412
|
-
* Rakefile:
|
413
|
-
Updated build system, updated to link-grammar 4.6.7.
|
414
|
-
[1c8da4f433c9]
|
415
|
-
|
416
|
-
2009-12-17 Michael Granger <ged@FaerieMUD.org>
|
417
|
-
|
418
|
-
* .hgignore, INSTALL, README, Rakefile, Rakefile.local,
|
419
|
-
experiments/parsetest.rb, ext/dictionary.c, lib/linkparser.rb,
|
420
|
-
lib/linkparser/linkage.rb, lib/linkparser/sentence.rb, project.yml,
|
421
|
-
spec/linkparser/linkage_spec.rb:
|
422
|
-
Version update, switched compilation systems.
|
423
|
-
* Updated to link-grammar 4.6.5, including suffix changes to support
|
424
|
-
new dictionary entries forms.
|
425
|
-
* Converted to use rake-compiler
|
426
|
-
* Documentation improvments
|
427
|
-
[920f99ccf430]
|
428
|
-
|
429
|
-
2009-10-16 Michael Granger <ged@FaerieMUD.org>
|
430
|
-
|
431
|
-
* .hgtags:
|
432
|
-
Added tag 1.0.6 for changeset e9a639fee32a
|
433
|
-
[1abf1ad0a2b5]
|
434
|
-
|
435
|
-
* .hgsigs:
|
436
|
-
Added signature for changeset ba30bbc8eee2
|
437
|
-
[631daf5b10cc] [1.0.6, v1.0.6]
|
438
|
-
|
439
|
-
* .hgignore, ext/extconf.rb, ext/linkage.c:
|
440
|
-
Updated to link-grammar 4.6.4.
|
441
|
-
* Modified linkage.c to work with an undocumented API change in August
|
442
|
-
(r27573).
|
443
|
-
* Updated included archive.
|
444
|
-
[283d17600f52]
|
445
|
-
|
446
|
-
2009-08-20 Michael Granger <ged@FaerieMUD.org>
|
447
|
-
|
448
|
-
* .hgignore, ext/linkage.c, lib/linkparser/linkage.rb,
|
449
|
-
spec/linkparser/linkage_spec.rb:
|
450
|
-
* LinkParser::Linkage
|
451
|
-
- New methods: #disjunct_strings, #disjuncts, and #nouns (thanks to
|
452
|
-
Shawn Pyle for the idea)
|
453
|
-
* Documentation fixes
|
454
|
-
[abcf80f48f37]
|
455
|
-
|
456
|
-
* .hgignore, ext/extconf.rb, lib/linkparser/linkage.rb,
|
457
|
-
lib/linkparser/sentence.rb:
|
458
|
-
* Added an ignore file for build artifacts
|
459
|
-
* Added a check for linkage_free_links_and_domains(). Thanks to Shawn
|
460
|
-
Pyle for the report that led to this.
|
461
|
-
* Stripped whitespace to avoid offending Mahlon's eyes. :P
|
462
|
-
* Updated to link-grammar 4.5.8 (no real changes, just re-test)
|
463
|
-
[f345daa3b57f]
|
464
|
-
|
465
|
-
2009-08-15 Michael Granger <ged@FaerieMUD.org>
|
466
|
-
|
467
|
-
* Rakefile, project.yml:
|
468
|
-
Updated build system
|
469
|
-
[78f075571f06]
|
470
|
-
|
471
|
-
2009-08-15 convert-repo <convert-repo>
|
472
|
-
|
473
|
-
* .hgtags:
|
474
|
-
update tags
|
475
|
-
[502958d17cfb]
|
476
|
-
|
477
|
-
2009-06-23 Michael Granger <ged@FaerieMUD.org>
|
478
|
-
|
479
|
-
* ChangeLog, lib/linkparser.rb:
|
480
|
-
Bumping version to 1.0.5.
|
481
|
-
[7176ec8d3aae]
|
482
|
-
|
483
|
-
2009-06-19 Michael Granger <ged@FaerieMUD.org>
|
484
|
-
|
485
|
-
* README, spec/bugfixes_spec.rb, spec/linkparser/dictionary_spec.rb,
|
486
|
-
spec/linkparser/linkage_spec.rb,
|
487
|
-
spec/linkparser/parseoptions_spec.rb,
|
488
|
-
spec/linkparser/sentence_spec.rb:
|
489
|
-
Fixed problems with the specs run on systems with non-English
|
490
|
-
locales (fixes #7).
|
491
|
-
[7e5a556c93fd]
|
492
|
-
|
493
|
-
* ChangeLog, INSTALL, README, Rakefile:
|
494
|
-
* Updated build system
|
495
|
-
* Updated included link-grammar library to latest (4.5.7)
|
496
|
-
[059c03faac09]
|
497
|
-
|
498
|
-
2009-06-09 Michael Granger <ged@FaerieMUD.org>
|
499
|
-
|
500
|
-
* ChangeLog, INSTALL, README:
|
501
|
-
* Updated versions of the link-grammar library referenced in the
|
502
|
-
docs.
|
503
|
-
[f23f17e3efb9]
|
504
|
-
|
505
|
-
2009-06-03 Michael Granger <ged@FaerieMUD.org>
|
506
|
-
|
507
|
-
* ChangeLog, Rakefile.local, ext/extconf.rb, ext/linkage.c,
|
508
|
-
ext/parseoptions.c, ext/sentence.c, lib/linkparser.rb,
|
509
|
-
lib/linkparser/sentence.rb, spec/linkparser/parseoptions_spec.rb,
|
510
|
-
spec/linkparser/sentence_spec.rb:
|
511
|
-
* Updated to link-grammar-4.5.6.
|
512
|
-
* Added support for ParseOptions#spell_guessing_enabled
|
513
|
-
* Fixed buggy sentence behavior when the underlying Sentence hadn't
|
514
|
-
yet been parsed.
|
515
|
-
* Made the exception raised when a delegated linkage method is called
|
516
|
-
on a Sentence that doesn't have any linkages. Thanks to Michael
|
517
|
-
Bisignani <mbisignani@gmail.com> for bringing this problem to my
|
518
|
-
attention.
|
519
|
-
* Fixed some type-qualifier warnings.
|
520
|
-
* Bumped version to 1.0.4.
|
521
|
-
[02db497f2f11]
|
522
|
-
|
523
|
-
2009-03-18 Michael Granger <ged@FaerieMUD.org>
|
524
|
-
|
525
|
-
* LICENSE, README, Rakefile, project.yml:
|
526
|
-
* Update license year.
|
527
|
-
* Updated build.
|
528
|
-
[1dbd86f77e37]
|
529
|
-
|
530
|
-
2008-12-20 Michael Granger <ged@FaerieMUD.org>
|
531
|
-
|
532
|
-
* ChangeLog, Rakefile, project.yml:
|
533
|
-
* Removed some more unnecessary files from the gem distribution to
|
534
|
-
reduce size.
|
535
|
-
[f2c4a913aebc]
|
536
|
-
|
537
|
-
2008-12-19 Michael Granger <ged@FaerieMUD.org>
|
538
|
-
|
539
|
-
* ChangeLog, INSTALL, MANIFEST, README, Rakefile, docs/link-
|
540
|
-
includes.h, docs/public-functions.h,
|
541
|
-
experiments/diagram_sentences.rb, experiments/dumplinks.rb,
|
542
|
-
experiments/free_stuff.rb, experiments/pps.rb, ext/dictionary.c,
|
543
|
-
ext/extconf.rb, ext/linkage.c, ext/linkparser.c, ext/parseoptions.c,
|
544
|
-
ext/sentence.c, lib/linkparser.rb, lib/linkparser/linkage.rb, link-
|
545
|
-
grammar-4.3.9.patch, loadpath.rb, project.yml, spec/TEMPLATE.rb.tpl,
|
546
|
-
spec/bugfixes_spec.rb, spec/dictionary_spec.rb,
|
547
|
-
spec/linkage_spec.rb, spec/linkparser/dictionary_spec.rb,
|
548
|
-
spec/linkparser/linkage_spec.rb,
|
549
|
-
spec/linkparser/parseoptions_spec.rb,
|
550
|
-
spec/linkparser/sentence_spec.rb, spec/linkparser_spec.rb,
|
551
|
-
spec/parseoptions_spec.rb, spec/sentence_spec.rb:
|
552
|
-
* Updated build system
|
553
|
-
* Updated for link-grammar 4.4.1
|
554
|
-
* Removed the (now-obsolete) patch to link-grammar
|
555
|
-
* Removed a bunch of other old cruft
|
556
|
-
* Reorganized the specs into the standard mirrored layout
|
557
|
-
* Added LinkParser.link_grammar_version
|
558
|
-
* LinkParser::ParseOptions
|
559
|
-
- Added spec coverage for #all_short_connectors?
|
560
|
-
- Added implementations for #timer_expired?, #memory_exhausted?,
|
561
|
-
#resources_exhausted?, and #reset_resources.
|
562
|
-
* Documentation cleanup for the upcoming RDoc 2.3.x
|
563
|
-
[098c583781f5]
|
564
|
-
|
565
|
-
2008-12-18 Michael Granger <ged@FaerieMUD.org>
|
566
|
-
|
567
|
-
* Rakefile, ext/dictionary.c, ext/linkage.c, ext/parseoptions.c,
|
568
|
-
ext/sentence.c, project.yml:
|
569
|
-
* Updated build system
|
570
|
-
* Removed some spammy debugging.
|
571
|
-
[a9d6d1a52afe]
|
572
|
-
|
573
|
-
2008-11-20 Michael Granger <ged@FaerieMUD.org>
|
574
|
-
|
575
|
-
* INSTALL, Rakefile, project.yml:
|
576
|
-
Updated the minimum version in the link-grammar gem requirement to
|
577
|
-
4.3.9.
|
578
|
-
[f3db13a46463]
|
579
|
-
|
580
|
-
2008-11-19 Michael Granger <ged@FaerieMUD.org>
|
581
|
-
|
582
|
-
* README:
|
583
|
-
Ye gods. Re-re-undoing clobbered README, hopefully for the last
|
584
|
-
time.
|
585
|
-
[caa543471718]
|
586
|
-
|
587
|
-
* ChangeLog, README, Rakefile, project.yml:
|
588
|
-
Updated build system.
|
589
|
-
[b7a43f58e6d5]
|
590
|
-
|
591
|
-
* ChangeLog, ext/extconf.rb, spec/linkage_spec.rb:
|
592
|
-
* Revert an accidentally-clobbered fix for linkage_spec.rb.
|
593
|
-
* Rearranged ext/extconf.rb to hopefully fix the build for FreeBSD.
|
594
|
-
[7e0f95390f32]
|
595
|
-
|
596
|
-
* README, Rakefile.local:
|
597
|
-
* Reverted accidentally-overwritten README
|
598
|
-
* Cleaned up the local rakefile a bit
|
599
|
-
[fd3bf930eebb]
|
600
|
-
|
601
|
-
2008-11-18 Michael Granger <ged@FaerieMUD.org>
|
602
|
-
|
603
|
-
* ChangeLog, Rakefile.local:
|
604
|
-
Fixed a build message.
|
605
|
-
[dd810dad718c]
|
606
|
-
|
607
|
-
* INSTALL, Rakefile:
|
608
|
-
Updated the build system to fix the problems with building the Gem.
|
609
|
-
[bda132a55cd0]
|
610
|
-
|
611
|
-
* ChangeLog, LICENSE, README, Rakefile, Rakefile.local,
|
612
|
-
ext/TEMPLATE.c.tpl, ext/dictionary.c, ext/extconf.rb, ext/linkage.c,
|
613
|
-
ext/linkparser.c, ext/linkparser.h, ext/parseoptions.c,
|
614
|
-
ext/sentence.c, misc/monkeypatches.rb, spec/bugfixes_spec.rb,
|
615
|
-
spec/dictionary_spec.rb, spec/linkage_spec.rb,
|
616
|
-
spec/parseoptions_spec.rb, spec/sentence_spec.rb:
|
617
|
-
* Ditched Mkrf for mkmf. This makes me sad, but Mkrf just failed on
|
618
|
-
too many systems, and was hard to integrate into gem.
|
619
|
-
* Updated build system.
|
620
|
-
* Fixed gem packaging (I think).
|
621
|
-
* Updated copyright and other header stuff.
|
622
|
-
* Fixed a bunch of RDoc comments
|
623
|
-
* Converted a bunch of K&R-style functions to ANSI-style.
|
624
|
-
[114cbae39ab0]
|
625
|
-
|
626
|
-
2008-11-17 Michael Granger <ged@FaerieMUD.org>
|
627
|
-
|
628
|
-
* INSTALL:
|
629
|
-
Updated build instructions.
|
630
|
-
[250ffad00067]
|
631
|
-
|
632
|
-
2008-11-16 Michael Granger <ged@FaerieMUD.org>
|
633
|
-
|
634
|
-
* ChangeLog, ext/dictionary.c, ext/linkparser.c, ext/linkparser.h:
|
635
|
-
Replaced my naive initialization of the locale system with the
|
636
|
-
recommended code from the docs.
|
637
|
-
[220772ab1807]
|
638
|
-
|
639
|
-
2008-11-15 Michael Granger <ged@FaerieMUD.org>
|
640
|
-
|
641
|
-
* ChangeLog, lib/linkparser.rb:
|
642
|
-
Bumping the version, fixing docs.
|
643
|
-
[70b036839511]
|
644
|
-
|
645
|
-
* ChangeLog, README, Rakefile, Rakefile.local, ext/linkage.c,
|
646
|
-
lib/linkparser/linkage.rb, link-grammar-4.3.5.patch, link-
|
647
|
-
grammar-4.3.9.patch, misc/monkeypatches.rb, project.yml,
|
648
|
-
spec/linkage_spec.rb:
|
649
|
-
* Updated the binding to build against 4.3.9.
|
650
|
-
* Removed the necessity of building against a patched link-grammar
|
651
|
-
library. Removed the stuff from the patch that was no longer
|
652
|
-
necessary since 4.3.9 now include the necessary memory-freeing
|
653
|
-
functions, and no longer printf()s warnings without adhering to the
|
654
|
-
warning level.
|
655
|
-
* Updated the build system.
|
656
|
-
* Still needs more work before it can be gemmed up, but it's close.
|
657
|
-
* Thanks, as always, to Martin Chase for many useful suggestions and
|
658
|
-
help.
|
659
|
-
[70a576405b7e]
|
660
|
-
|
661
|
-
2008-08-20 Michael Granger <ged@FaerieMUD.org>
|
662
|
-
|
663
|
-
* ChangeLog, Rakefile.local, ext/extconf.rb:
|
664
|
-
* Removed the old extension config script
|
665
|
-
* Updated Rakefile.local with the right extension, and added the .so
|
666
|
-
to the CLOBBER files.
|
667
|
-
[a1873e388223]
|
668
|
-
|
669
|
-
* lib/linkparser.rb, makedist.rb:
|
670
|
-
* Removed the makedist.rb script.
|
671
|
-
* Bumped version to 1.0.2.
|
672
|
-
[06fb7f837f21]
|
673
|
-
|
674
|
-
* LICENSE, README:
|
675
|
-
Updated README and LICENSE files.
|
676
|
-
[3d0bfed29b61]
|
677
|
-
|
678
|
-
* ChangeLog, README, Rakefile, project.yml:
|
679
|
-
Updated the build system.
|
680
|
-
[c4b102ce866c]
|
681
|
-
|
682
|
-
2008-08-13 Michael Granger <ged@FaerieMUD.org>
|
683
|
-
|
684
|
-
* ChangeLog, LICENSE, LinkParser Project.tmproj, MANIFEST, Rakefile,
|
685
|
-
Rakefile.local, experiments/diagram_sentences.rb,
|
686
|
-
experiments/dumplinks.rb, experiments/pps.rb, linkparser-path.rb,
|
687
|
-
loadpath.rb, misc/rake/helpers.rb, misc/rake/svn.rb,
|
688
|
-
misc/rake/verifytask.rb, project.yml, spec/TEMPLATE.rb.tpl,
|
689
|
-
spec/bugfixes_spec.rb, spec/dictionary_spec.rb,
|
690
|
-
spec/linkage_spec.rb, spec/parseoptions_spec.rb,
|
691
|
-
spec/sentence_spec.rb:
|
692
|
-
* Updated to the latest build system.
|
693
|
-
* Updated to New BSD license
|
694
|
-
* Renamed 'linkparser-path.rb' to 'loadpath.rb'
|
695
|
-
[a46d68b427e5]
|
696
|
-
|
697
|
-
2008-06-23 Michael Granger <ged@FaerieMUD.org>
|
698
|
-
|
699
|
-
* Rakefile:
|
700
|
-
Turning off Darkfish until I can port it to RDoc 2.
|
701
|
-
[5bcdb973b956]
|
702
|
-
|
703
|
-
2008-05-27 Michael Granger <ged@FaerieMUD.org>
|
704
|
-
|
705
|
-
* MANIFEST, README, Rakefile, docs/CATALOG, docs/makedocs.rb,
|
706
|
-
extconf.rb:
|
707
|
-
* Cleaned up some old documentation cruft
|
708
|
-
* Fixed the link-grammar version mentioned in the README file
|
709
|
-
[d67f8622dbb0] [SNAPSHOT_20080526.4]
|
710
|
-
|
711
|
-
2008-05-26 Michael Granger <ged@FaerieMUD.org>
|
712
|
-
|
713
|
-
* INSTALL, Rakefile:
|
714
|
-
* Added better handling of missing 'mkrf' dependency.
|
715
|
-
* Added some more instructions to INSTALL.
|
716
|
-
[22b8dffbad11] [SNAPSHOT_20080526.2, SNAPSHOT_20080526.3]
|
717
|
-
|
718
|
-
* .irbrc, INSTALL, README, Rakefile, ext/linkage.c,
|
719
|
-
lib/linkparser/linkage.rb, misc/monkeypatches.rb, misc/readme-
|
720
|
-
example.rb, spec/linkage_spec.rb:
|
721
|
-
* Fixed the Mkrf-generated Rakefile so it'll actually install the
|
722
|
-
extension; this requires a monkeypatch currently, but I'll upstream
|
723
|
-
the fix to the Mkrf guys.
|
724
|
-
* Fixed some warnings in linkage.c
|
725
|
-
* Fixed the INSTALL instructions
|
726
|
-
* Fixed up the example in the README and extracted the code to ease
|
727
|
-
future testing.
|
728
|
-
* Fixed a bug in the suffix-stripping in the Linkage#subject and
|
729
|
-
#object methods.
|
730
|
-
[5b9a36fbd939] [SNAPSHOT_20080526]
|
731
|
-
|
732
|
-
* LinkParser Project.tmproj, Rakefile, install.rb, lib/linkparser.rb,
|
733
|
-
link-grammar-4.2.4.patch, link-grammar-4.3.5.patch,
|
734
|
-
misc/rake/helpers.rb, misc/rake/svn.rb, misc/rake/verifytask.rb,
|
735
|
-
spec/linkage_spec.rb, spec/sentence.tests.rb, spec/sentence_spec.rb:
|
736
|
-
* Finished conversion of test::unit tests to RSpec.
|
737
|
-
* Fleshed out Rake-based build system
|
738
|
-
* Updated to work with the latest Abiword link-grammar library (4.3.5)
|
739
|
-
[c4f4cf3f7184]
|
740
|
-
|
741
|
-
2008-02-10 Michael Granger <ged@FaerieMUD.org>
|
742
|
-
|
743
|
-
* LinkParser Project.tmproj, Rakefile, ext/TEMPLATE.c.tpl,
|
744
|
-
ext/dictionary.c, ext/extconf.rb, ext/linkage.c, ext/linkparser.c,
|
745
|
-
ext/linkparser.h, ext/parseoptions.c, ext/sentence.c,
|
746
|
-
lib/linkparser.rb, lib/linkparser/linkage.rb,
|
747
|
-
lib/linkparser/sentence.rb, spec/bugfixes_spec.rb,
|
748
|
-
spec/dictionary_spec.rb, spec/linkage_spec.rb,
|
749
|
-
spec/parseoptions.tests.rb, spec/parseoptions_spec.rb,
|
750
|
-
spec/sentence.tests.rb:
|
751
|
-
* Updated copyright date.
|
752
|
-
* Converted ParseOptions tests to RSpec.
|
753
|
-
[42299c3fb1f9]
|
754
|
-
|
755
|
-
2007-10-19 Michael Granger <ged@FaerieMUD.org>
|
756
|
-
|
757
|
-
* Rakefile, docs/CATALOG, docs/makedocs.rb, ext/dictionary.c,
|
758
|
-
ext/linkage.c, ext/linkparser.c, ext/parseoptions.c, ext/sentence.c,
|
759
|
-
lib/linkparser/linkage.rb, lib/linkparser/sentence.rb, test.rb:
|
760
|
-
Documentation fixes; converted to Darkfish RDoc generator
|
761
|
-
[48ea2b3f17b0]
|
762
|
-
|
763
|
-
2007-07-27 Michael Granger <ged@FaerieMUD.org>
|
764
|
-
|
765
|
-
* README, docs/CATALOG, ext/linkage.c, ext/parseoptions.c,
|
766
|
-
ext/sentence.c, lib/linkparser/sentence.rb:
|
767
|
-
Checkpoint commit
|
768
|
-
[0e29e6fc9219] [RELEASE_0_0_3]
|
769
|
-
|
770
|
-
2007-07-25 Michael Granger <ged@FaerieMUD.org>
|
771
|
-
|
772
|
-
* LinkParser Project.tmproj, Rakefile, experiments/dumplinks.rb,
|
773
|
-
ext/TEMPLATE.c.tpl, ext/dictionary.c, ext/linkage.c,
|
774
|
-
ext/linkparser.c, ext/linkparser.h, ext/parseoptions.c,
|
775
|
-
ext/sentence.c, lib/linkparser.rb, lib/linkparser/linkage.rb,
|
776
|
-
lib/linkparser/sentence.rb, linkparser-path.rb,
|
777
|
-
spec/TEMPLATE.rb.tpl, spec/bugfixes_spec.rb,
|
778
|
-
spec/dictionary_spec.rb, spec/linkage_spec.rb,
|
779
|
-
spec/parseoptions.tests.rb, spec/sentence.tests.rb,
|
780
|
-
tests/TEMPLATE.rb.tpl, tests/dictionary.tests.rb,
|
781
|
-
tests/linkage.tests.rb, tests/parseoptions.tests.rb,
|
782
|
-
tests/sentence.tests.rb, utils.rb:
|
783
|
-
* Started converting build system, test::unit -> rspec, etc.
|
784
|
-
[f479d2e87648]
|
785
|
-
|
786
|
-
2007-06-11 Michael Granger <ged@FaerieMUD.org>
|
787
|
-
|
788
|
-
* INSTALL:
|
789
|
-
Added some stuff to the build instructions
|
790
|
-
[0792048ccd29]
|
791
|
-
|
792
|
-
2006-10-30 Martin Chase <stillflame@FaerieMUD.org>
|
793
|
-
|
794
|
-
* INSTALL, link-grammar-4.2.4.patch:
|
795
|
-
- added installation instructions
|
796
|
-
- added patching to link-grammar to pass tests
|
797
|
-
[c107bffc8ad4] [RELEASE_20061030]
|
798
|
-
|
799
|
-
2006-10-29 Martin Chase <stillflame@FaerieMUD.org>
|
800
|
-
|
801
|
-
* tests/linkage.tests.rb:
|
802
|
-
- added test that breaks with version 4.2.4 of link-parser due to
|
803
|
-
lack of "linkage_get_current_sublinkage" function
|
804
|
-
[8ac429fa4db9]
|
805
|
-
|
806
|
-
2006-10-11 Michael Granger <ged@FaerieMUD.org>
|
807
|
-
|
808
|
-
* LinkParser Project.tmproj, ext/sentence.c,
|
809
|
-
lib/linkparser/sentence.rb, tests/linkage.tests.rb,
|
810
|
-
tests/sentence.tests.rb:
|
811
|
-
* More documentation cleanup.
|
812
|
-
* Fixed Sentence#[]
|
813
|
-
* Added some more Sentence tests.
|
814
|
-
[374b81fd97a3]
|
815
|
-
|
816
|
-
* ext/dictionary.c, ext/linkage.c, ext/parseoptions.c, ext/sentence.c,
|
817
|
-
tests/linkage.tests.rb:
|
818
|
-
* Fixes for documentation
|
819
|
-
* Fixed constituent_tree_string's mode argument.
|
820
|
-
[d9ed64949272]
|
821
|
-
|
822
|
-
* MANIFEST:
|
823
|
-
*Added MANIFEST file for makedist.rb.
|
824
|
-
[c4764563d4ac]
|
825
|
-
|
826
|
-
2006-10-10 Michael Granger <ged@FaerieMUD.org>
|
827
|
-
|
828
|
-
* makedist.rb, utils.rb:
|
829
|
-
* Dist-script fixes.
|
830
|
-
[028c5a1b8fce]
|
831
|
-
|
832
|
-
* ext/extconf.rb, extconf.rb, install.rb, test.rb:
|
833
|
-
* Finished up installation/build/test utility scripts.
|
834
|
-
[c88077e91937]
|
835
|
-
|
836
|
-
2006-09-29 Michael Granger <ged@FaerieMUD.org>
|
837
|
-
|
838
|
-
* .irbrc, LinkParser Project.tmproj, experiments/diagram_sentences.rb,
|
839
|
-
experiments/pps.rb, ext/extconf.rb, ext/linkage.c, ext/linkparser.c,
|
840
|
-
ext/linkparser.h, ext/sentence.c, lib/linkparser.rb,
|
841
|
-
lib/linkparser/linkage.rb, lib/linkparser/sentence.rb, link-
|
842
|
-
grammar-4.2.2.patch, linkparser-path.rb, test.rb,
|
843
|
-
tests/dictionary.tests.rb, tests/linkage.tests.rb,
|
844
|
-
tests/parseoptions.tests.rb, tests/sentence.tests.rb:
|
845
|
-
* Mostly all of the low-level function wrapped.
|
846
|
-
* Added some high-level methods on Linkages.
|
847
|
-
[89aed2053125]
|
848
|
-
|
849
|
-
2006-09-18 Michael Granger <ged@FaerieMUD.org>
|
850
|
-
|
851
|
-
* LinkParser Project.tmproj, ext/linkage.c, extconf.rb, link-
|
852
|
-
grammar-4.2.4.patch, tests/linkage.tests.rb:
|
853
|
-
* Updated for and included LinkGrammar 4.2.4
|
854
|
-
* Fixed weird typo
|
855
|
-
[fbc91fcdb72c]
|
856
|
-
|
857
|
-
2006-07-29 Michael Granger <ged@FaerieMUD.org>
|
858
|
-
|
859
|
-
* .irbrc, LinkParser Project.tmproj, docs/link-includes.h,
|
860
|
-
ext/linkage.c, extconf.rb, test.rb, tests/linkage.tests.rb,
|
861
|
-
tests/sentence.tests.rb:
|
862
|
-
Checkpoint commit:
|
863
|
-
|
864
|
-
* Fleshed out LinkParser::Linkage a bit more (not yet complete)
|
865
|
-
* Gave up on running tests with testrb and imported test.rb from
|
866
|
-
project-utils.
|
867
|
-
* Added TextMate project file
|
868
|
-
* Added an .irbrc
|
869
|
-
[ae31f32b36bb]
|
870
|
-
|
871
|
-
2006-07-21 Michael Granger <ged@FaerieMUD.org>
|
872
|
-
|
873
|
-
* docs/CATALOG, docs/basic-api.rb, docs/makedocs.rb, docs/public-
|
874
|
-
functions.h, experiments/diagram_sentences.rb,
|
875
|
-
experiments/free_stuff.rb, ext/TEMPLATE.c.tpl, ext/dictionary.c,
|
876
|
-
ext/extconf.rb, ext/linkage.c, ext/linkparser.c, ext/linkparser.h,
|
877
|
-
ext/parseoptions.c, ext/sentence.c, extconf.rb, link-
|
878
|
-
grammar-4.2.2.patch, makedist.rb, tests/TEMPLATE.rb.tpl,
|
879
|
-
tests/dictionary.tests.rb, tests/parseoptions.tests.rb,
|
880
|
-
tests/sentence.tests.rb, utils.rb:
|
881
|
-
* Checkpoint: First semi-useful version.
|
882
|
-
[ddc50a85954a]
|