linkparser 1.1.3 → 2.2.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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.md +68 -3
- data/README.md +66 -47
- data/ext/{dictionary.c → linkparser_ext/dictionary.c} +61 -66
- data/ext/{extconf.rb → linkparser_ext/extconf.rb} +10 -3
- data/ext/{linkage.c → linkparser_ext/linkage.c} +121 -358
- data/ext/{linkparser.c → linkparser_ext/linkparser.c} +79 -28
- data/ext/{linkparser.h → linkparser_ext/linkparser.h} +14 -16
- data/ext/linkparser_ext/parseoptions.c +776 -0
- data/ext/{sentence.c → linkparser_ext/sentence.c} +65 -151
- data/lib/linkparser.rb +14 -6
- data/lib/linkparser/dictionary.rb +13 -0
- data/lib/linkparser/linkage.rb +271 -166
- data/lib/linkparser/mixins.rb +2 -3
- data/lib/linkparser/parseoptions.rb +58 -0
- data/lib/linkparser/sentence.rb +21 -38
- data/spec/bugfixes_spec.rb +23 -36
- data/spec/helpers.rb +39 -0
- data/spec/linkparser/dictionary_spec.rb +29 -48
- data/spec/linkparser/linkage_spec.rb +212 -276
- data/spec/linkparser/mixins_spec.rb +9 -24
- data/spec/linkparser/parseoptions_spec.rb +47 -59
- data/spec/linkparser/sentence_spec.rb +36 -56
- data/spec/linkparser_spec.rb +11 -25
- metadata +134 -174
- metadata.gz.sig +0 -0
- data/.gemtest +0 -0
- data/ChangeLog +0 -670
- data/LICENSE +0 -27
- data/Rakefile +0 -91
- data/ext/parseoptions.c +0 -1236
metadata.gz.sig
CHANGED
Binary file
|
data/.gemtest
DELETED
File without changes
|
data/ChangeLog
DELETED
@@ -1,670 +0,0 @@
|
|
1
|
-
2011-05-12 Michael Granger <ged@FaerieMUD.org>
|
2
|
-
|
3
|
-
* .hgtags:
|
4
|
-
Added tag v1.1.2 for changeset dc1f658653c5
|
5
|
-
[c29cb448e28d] [tip]
|
6
|
-
|
7
|
-
* .hgsigs:
|
8
|
-
Added signature for changeset a22b9ce4e964
|
9
|
-
[dc1f658653c5] [v1.1.2]
|
10
|
-
|
11
|
-
* lib/linkparser.rb:
|
12
|
-
Bump patch version for release.
|
13
|
-
[a22b9ce4e964]
|
14
|
-
|
15
|
-
* Merge pull request #2 from AlessandroBerardi/patch-1
|
16
|
-
|
17
|
-
Fixes package configuration options concatenation bug
|
18
|
-
[445659b4f1b0] [github/master]
|
19
|
-
|
20
|
-
2011-05-11 Alessandro Berardi <berardialessandro@gmail.com>
|
21
|
-
|
22
|
-
* ext/extconf.rb:
|
23
|
-
Fixes package configuration options concatenation bug (see
|
24
|
-
http://stackoverflow.com/questions/5131716/problem-installing-
|
25
|
-
linkparser-on-ubuntu-10)
|
26
|
-
[4b007cb0b88d]
|
27
|
-
|
28
|
-
2011-04-04 Michael Granger <ged@FaerieMUD.org>
|
29
|
-
|
30
|
-
* docs/basic-api.rb, examples/basic-api.rb, examples/readme-
|
31
|
-
example.rb, misc/readme-example.rb:
|
32
|
-
Consolidate examples under an examples/ directory
|
33
|
-
[ed079ae141d5]
|
34
|
-
|
35
|
-
* Rakefile:
|
36
|
-
The rake-compiler target lives in the LIBDIR, not the EXTDIR.
|
37
|
-
[522421b6ed6e]
|
38
|
-
|
39
|
-
* Rakefile:
|
40
|
-
Fixed the gemtest workaround in the Rakefile
|
41
|
-
[543559d41600]
|
42
|
-
|
43
|
-
* README.md:
|
44
|
-
README doesn't need to be executable
|
45
|
-
[731894db5b82]
|
46
|
-
|
47
|
-
* ext/linkparser.h:
|
48
|
-
Fix the includes (local vs. system)
|
49
|
-
[65471608cc6e]
|
50
|
-
|
51
|
-
* Rakefile:
|
52
|
-
Make the Rakefile more generically-useful
|
53
|
-
[e6207a7e6552]
|
54
|
-
|
55
|
-
* README.md:
|
56
|
-
Clean up the README
|
57
|
-
[41e337b64d61]
|
58
|
-
|
59
|
-
* Manifest.txt:
|
60
|
-
Remove miscellaneous examples from the gem manifest
|
61
|
-
[e519c557f837]
|
62
|
-
|
63
|
-
2011-03-10 Michael Granger <ged@FaerieMUD.org>
|
64
|
-
|
65
|
-
* LICENSE, README.md:
|
66
|
-
Updated license dates.
|
67
|
-
[7de1da168b3f]
|
68
|
-
|
69
|
-
* .gemtest, Manifest.txt, Rakefile:
|
70
|
-
Build cleanup, added gem-testers support
|
71
|
-
* Remove YARD stuff from the Rakefile, as it causes more harm than
|
72
|
-
good
|
73
|
-
* Added a 'test' task that works around rake-compiler problems with
|
74
|
-
'gem test'
|
75
|
-
* Added maintainer-mode task
|
76
|
-
* Updated Manifest, removed :prerelease hook to gen the ChangeLog, as
|
77
|
-
it's now in the manifest.
|
78
|
-
* Updated the dev copy of link-grammar to 4.7.4.
|
79
|
-
[0705b397a9ac]
|
80
|
-
|
81
|
-
* .irbrc:
|
82
|
-
Simplified .irbrc
|
83
|
-
[1e25996615f2]
|
84
|
-
|
85
|
-
* linkparser/README.md, linkparser/bin/linkparser,
|
86
|
-
linkparser/lib/linkparser.rb, linkparser/spec/linkparser_spec.rb:
|
87
|
-
Removing unintentionally-committed artifact of the conversion to Hoe
|
88
|
-
[196b282f9013]
|
89
|
-
|
90
|
-
2011-01-19 Michael Granger <ged@FaerieMUD.org>
|
91
|
-
|
92
|
-
* ext/linkparser.h:
|
93
|
-
Removed unnecessary (and non-existant on Ruby < 1.9) include.
|
94
|
-
[e4107bc10ca6]
|
95
|
-
|
96
|
-
2011-01-11 Michael Granger <ged@FaerieMUD.org>
|
97
|
-
|
98
|
-
* lib/linkparser/linkage.rb:
|
99
|
-
Fixing some shadowed variables for 1.9.2.
|
100
|
-
[507ef20fc315]
|
101
|
-
|
102
|
-
* lib/linkparser.rb, lib/linkparser/linkage.rb,
|
103
|
-
lib/linkparser/sentence.rb:
|
104
|
-
Avoid circular requires.
|
105
|
-
[23a39531870a]
|
106
|
-
|
107
|
-
2010-12-30 Michael Granger <ged@FaerieMUD.org>
|
108
|
-
|
109
|
-
* .hgsubstate:
|
110
|
-
Cleanup subrepo state
|
111
|
-
[34e6016a5772]
|
112
|
-
|
113
|
-
* .hgsub, .hgsubstate:
|
114
|
-
Removing rake tasklibs subrepo
|
115
|
-
[87ef0e56e78f]
|
116
|
-
|
117
|
-
* .autotest, .irbrc, History.md, Manifest.txt, README.md, Rakefile,
|
118
|
-
Rakefile.local, ext/extconf.rb, lib/linkparser.rb,
|
119
|
-
linkparser/README.md, linkparser/bin/linkparser,
|
120
|
-
linkparser/lib/linkparser.rb, linkparser/spec/linkparser_spec.rb,
|
121
|
-
project.yml, spec/TEMPLATE.rb.tpl, spec/linkparser/linkage_spec.rb:
|
122
|
-
Updated for link-grammar 4.7.1, specs cleanup and fixes, converted
|
123
|
-
to Hoe.
|
124
|
-
[7af8c401b107]
|
125
|
-
|
126
|
-
* .hgtags:
|
127
|
-
Added tag v1.0.6 for changeset e9a639fee32a
|
128
|
-
[250810c6118b]
|
129
|
-
|
130
|
-
2010-12-09 Michael Granger <ged@FaerieMUD.org>
|
131
|
-
|
132
|
-
* .hgignore, README.md:
|
133
|
-
Ignore the yard cache, and fix the version mentioned in the README.
|
134
|
-
[fc506a11f249]
|
135
|
-
|
136
|
-
2010-11-30 Michael Granger <ged@FaerieMUD.org>
|
137
|
-
|
138
|
-
* .hgtags:
|
139
|
-
Added tag v1.1.0 for changeset 8d9184b82361
|
140
|
-
[0e62b77cd5ad]
|
141
|
-
|
142
|
-
* .hgsigs:
|
143
|
-
Added signature for changeset 2f318af09702
|
144
|
-
[5852e8f31971] [v1.1.0]
|
145
|
-
|
146
|
-
* .hgsubstate, INSTALL, README, README.md, Rakefile, utils.rb:
|
147
|
-
Cleanup in preparation for release.
|
148
|
-
[a4831a8377aa]
|
149
|
-
|
150
|
-
2010-11-24 Michael Granger <ged@FaerieMUD.org>
|
151
|
-
|
152
|
-
* .hgsubstate, ext/extconf.rb, ext/linkage.c, lib/linkparser.rb,
|
153
|
-
lib/linkparser/linkage.rb, lib/linkparser/mixins.rb,
|
154
|
-
spec/linkparser/dictionary_spec.rb, spec/linkparser/linkage_spec.rb,
|
155
|
-
spec/linkparser/mixins_spec.rb,
|
156
|
-
spec/linkparser/parseoptions_spec.rb:
|
157
|
-
Updated for 4.7.0.
|
158
|
-
* Bumped version to 1.1.0 to reflect API changes
|
159
|
-
* Updated to support 4.7.0's new-style conjunctions, which deprecates
|
160
|
-
the functions used to specify sublinkages. See
|
161
|
-
http://www.abisource.com/projects/link-
|
162
|
-
grammar/dict/coordination.html for details.
|
163
|
-
[54e4e2ff8899]
|
164
|
-
|
165
|
-
2010-11-22 Michael Granger <ged@FaerieMUD.org>
|
166
|
-
|
167
|
-
* .hgsub, .hgsubstate:
|
168
|
-
Adding the rake tasklibs as a subrepo
|
169
|
-
[f41f707e7028]
|
170
|
-
|
171
|
-
* Rakefile, project.yml, spec/TEMPLATE.rb.tpl, spec/bugfixes_spec.rb,
|
172
|
-
spec/linkparser/dictionary_spec.rb, spec/linkparser/linkage_spec.rb,
|
173
|
-
spec/linkparser/parseoptions_spec.rb,
|
174
|
-
spec/linkparser/sentence_spec.rb, spec/linkparser_spec.rb:
|
175
|
-
Checkpoint commit after updating to 4.7.0
|
176
|
-
[1eddd00723e6]
|
177
|
-
|
178
|
-
2010-10-15 Michael Granger <ged@FaerieMUD.org>
|
179
|
-
|
180
|
-
* ext/extconf.rb, lib/linkparser.rb:
|
181
|
-
Make the extconf use pkgconfig, if available, and add support for
|
182
|
-
fat binary gems.
|
183
|
-
[f9fadebcab0d]
|
184
|
-
|
185
|
-
2010-10-12 Michael Granger <ged@FaerieMUD.org>
|
186
|
-
|
187
|
-
* .hgignore, ChangeLog, LICENSE, Rakefile, Rakefile.local,
|
188
|
-
ext/dictionary.c, ext/extconf.rb, ext/linkage.c, ext/linkparser.c,
|
189
|
-
ext/linkparser.h, ext/parseoptions.c, ext/sentence.c,
|
190
|
-
lib/linkparser/linkage.rb, spec/bugfixes_spec.rb,
|
191
|
-
spec/linkparser/dictionary_spec.rb, spec/linkparser/linkage_spec.rb,
|
192
|
-
spec/linkparser/parseoptions_spec.rb,
|
193
|
-
spec/linkparser/sentence_spec.rb, spec/linkparser_spec.rb:
|
194
|
-
Memory-management fixes, updated for link-grammar 4.6.7, 1.9.2
|
195
|
-
fixes.
|
196
|
-
[21df914cedb1]
|
197
|
-
|
198
|
-
2010-04-28 Michael Granger <ged@FaerieMUD.org>
|
199
|
-
|
200
|
-
* Rakefile:
|
201
|
-
Updated build system, updated to link-grammar 4.6.7.
|
202
|
-
[1c8da4f433c9]
|
203
|
-
|
204
|
-
2009-12-17 Michael Granger <ged@FaerieMUD.org>
|
205
|
-
|
206
|
-
* .hgignore, INSTALL, README, Rakefile, Rakefile.local,
|
207
|
-
experiments/parsetest.rb, ext/dictionary.c, lib/linkparser.rb,
|
208
|
-
lib/linkparser/linkage.rb, lib/linkparser/sentence.rb, project.yml,
|
209
|
-
spec/linkparser/linkage_spec.rb:
|
210
|
-
Version update, switched compilation systems.
|
211
|
-
* Updated to link-grammar 4.6.5, including suffix changes to support
|
212
|
-
new dictionary entries forms.
|
213
|
-
* Converted to use rake-compiler
|
214
|
-
* Documentation improvments
|
215
|
-
[920f99ccf430]
|
216
|
-
|
217
|
-
2009-10-16 Michael Granger <ged@FaerieMUD.org>
|
218
|
-
|
219
|
-
* .hgtags:
|
220
|
-
Added tag 1.0.6 for changeset e9a639fee32a
|
221
|
-
[1abf1ad0a2b5]
|
222
|
-
|
223
|
-
* .hgsigs:
|
224
|
-
Added signature for changeset ba30bbc8eee2
|
225
|
-
[631daf5b10cc] [1.0.6, v1.0.6]
|
226
|
-
|
227
|
-
* .hgignore, ext/extconf.rb, ext/linkage.c:
|
228
|
-
Updated to link-grammar 4.6.4.
|
229
|
-
* Modified linkage.c to work with an undocumented API change in August
|
230
|
-
(r27573).
|
231
|
-
* Updated included archive.
|
232
|
-
[283d17600f52]
|
233
|
-
|
234
|
-
2009-08-20 Michael Granger <ged@FaerieMUD.org>
|
235
|
-
|
236
|
-
* .hgignore, ext/linkage.c, lib/linkparser/linkage.rb,
|
237
|
-
spec/linkparser/linkage_spec.rb:
|
238
|
-
* LinkParser::Linkage
|
239
|
-
- New methods: #disjunct_strings, #disjuncts, and #nouns (thanks to
|
240
|
-
Shawn Pyle for the idea)
|
241
|
-
* Documentation fixes
|
242
|
-
[abcf80f48f37]
|
243
|
-
|
244
|
-
* .hgignore, ext/extconf.rb, lib/linkparser/linkage.rb,
|
245
|
-
lib/linkparser/sentence.rb:
|
246
|
-
* Added an ignore file for build artifacts
|
247
|
-
* Added a check for linkage_free_links_and_domains(). Thanks to Shawn
|
248
|
-
Pyle for the report that led to this.
|
249
|
-
* Stripped whitespace to avoid offending Mahlon's eyes. :P
|
250
|
-
* Updated to link-grammar 4.5.8 (no real changes, just re-test)
|
251
|
-
[f345daa3b57f]
|
252
|
-
|
253
|
-
2009-08-15 Michael Granger <ged@FaerieMUD.org>
|
254
|
-
|
255
|
-
* Rakefile, project.yml:
|
256
|
-
Updated build system
|
257
|
-
[78f075571f06]
|
258
|
-
|
259
|
-
2009-08-15 convert-repo <convert-repo>
|
260
|
-
|
261
|
-
* .hgtags:
|
262
|
-
update tags
|
263
|
-
[502958d17cfb]
|
264
|
-
|
265
|
-
2009-06-23 Michael Granger <ged@FaerieMUD.org>
|
266
|
-
|
267
|
-
* ChangeLog, lib/linkparser.rb:
|
268
|
-
Bumping version to 1.0.5.
|
269
|
-
[7176ec8d3aae]
|
270
|
-
|
271
|
-
2009-06-19 Michael Granger <ged@FaerieMUD.org>
|
272
|
-
|
273
|
-
* README, spec/bugfixes_spec.rb, spec/linkparser/dictionary_spec.rb,
|
274
|
-
spec/linkparser/linkage_spec.rb,
|
275
|
-
spec/linkparser/parseoptions_spec.rb,
|
276
|
-
spec/linkparser/sentence_spec.rb:
|
277
|
-
Fixed problems with the specs run on systems with non-English
|
278
|
-
locales (fixes #7).
|
279
|
-
[7e5a556c93fd]
|
280
|
-
|
281
|
-
* ChangeLog, INSTALL, README, Rakefile:
|
282
|
-
* Updated build system
|
283
|
-
* Updated included link-grammar library to latest (4.5.7)
|
284
|
-
[059c03faac09]
|
285
|
-
|
286
|
-
2009-06-09 Michael Granger <ged@FaerieMUD.org>
|
287
|
-
|
288
|
-
* ChangeLog, INSTALL, README:
|
289
|
-
* Updated versions of the link-grammar library referenced in the
|
290
|
-
docs.
|
291
|
-
[f23f17e3efb9]
|
292
|
-
|
293
|
-
2009-06-03 Michael Granger <ged@FaerieMUD.org>
|
294
|
-
|
295
|
-
* ChangeLog, Rakefile.local, ext/extconf.rb, ext/linkage.c,
|
296
|
-
ext/parseoptions.c, ext/sentence.c, lib/linkparser.rb,
|
297
|
-
lib/linkparser/sentence.rb, spec/linkparser/parseoptions_spec.rb,
|
298
|
-
spec/linkparser/sentence_spec.rb:
|
299
|
-
* Updated to link-grammar-4.5.6.
|
300
|
-
* Added support for ParseOptions#spell_guessing_enabled
|
301
|
-
* Fixed buggy sentence behavior when the underlying Sentence hadn't
|
302
|
-
yet been parsed.
|
303
|
-
* Made the exception raised when a delegated linkage method is called
|
304
|
-
on a Sentence that doesn't have any linkages. Thanks to Michael
|
305
|
-
Bisignani <mbisignani@gmail.com> for bringing this problem to my
|
306
|
-
attention.
|
307
|
-
* Fixed some type-qualifier warnings.
|
308
|
-
* Bumped version to 1.0.4.
|
309
|
-
[02db497f2f11]
|
310
|
-
|
311
|
-
2009-03-18 Michael Granger <ged@FaerieMUD.org>
|
312
|
-
|
313
|
-
* LICENSE, README, Rakefile, project.yml:
|
314
|
-
* Update license year.
|
315
|
-
* Updated build.
|
316
|
-
[1dbd86f77e37]
|
317
|
-
|
318
|
-
2008-12-20 Michael Granger <ged@FaerieMUD.org>
|
319
|
-
|
320
|
-
* ChangeLog, Rakefile, project.yml:
|
321
|
-
* Removed some more unnecessary files from the gem distribution to
|
322
|
-
reduce size.
|
323
|
-
[f2c4a913aebc]
|
324
|
-
|
325
|
-
2008-12-19 Michael Granger <ged@FaerieMUD.org>
|
326
|
-
|
327
|
-
* ChangeLog, INSTALL, MANIFEST, README, Rakefile, docs/link-
|
328
|
-
includes.h, docs/public-functions.h,
|
329
|
-
experiments/diagram_sentences.rb, experiments/dumplinks.rb,
|
330
|
-
experiments/free_stuff.rb, experiments/pps.rb, ext/dictionary.c,
|
331
|
-
ext/extconf.rb, ext/linkage.c, ext/linkparser.c, ext/parseoptions.c,
|
332
|
-
ext/sentence.c, lib/linkparser.rb, lib/linkparser/linkage.rb, link-
|
333
|
-
grammar-4.3.9.patch, loadpath.rb, project.yml, spec/TEMPLATE.rb.tpl,
|
334
|
-
spec/bugfixes_spec.rb, spec/dictionary_spec.rb,
|
335
|
-
spec/linkage_spec.rb, spec/linkparser/dictionary_spec.rb,
|
336
|
-
spec/linkparser/linkage_spec.rb,
|
337
|
-
spec/linkparser/parseoptions_spec.rb,
|
338
|
-
spec/linkparser/sentence_spec.rb, spec/linkparser_spec.rb,
|
339
|
-
spec/parseoptions_spec.rb, spec/sentence_spec.rb:
|
340
|
-
* Updated build system
|
341
|
-
* Updated for link-grammar 4.4.1
|
342
|
-
* Removed the (now-obsolete) patch to link-grammar
|
343
|
-
* Removed a bunch of other old cruft
|
344
|
-
* Reorganized the specs into the standard mirrored layout
|
345
|
-
* Added LinkParser.link_grammar_version
|
346
|
-
* LinkParser::ParseOptions
|
347
|
-
- Added spec coverage for #all_short_connectors?
|
348
|
-
- Added implementations for #timer_expired?, #memory_exhausted?,
|
349
|
-
#resources_exhausted?, and #reset_resources.
|
350
|
-
* Documentation cleanup for the upcoming RDoc 2.3.x
|
351
|
-
[098c583781f5]
|
352
|
-
|
353
|
-
2008-12-18 Michael Granger <ged@FaerieMUD.org>
|
354
|
-
|
355
|
-
* Rakefile, ext/dictionary.c, ext/linkage.c, ext/parseoptions.c,
|
356
|
-
ext/sentence.c, project.yml:
|
357
|
-
* Updated build system
|
358
|
-
* Removed some spammy debugging.
|
359
|
-
[a9d6d1a52afe]
|
360
|
-
|
361
|
-
2008-11-20 Michael Granger <ged@FaerieMUD.org>
|
362
|
-
|
363
|
-
* INSTALL, Rakefile, project.yml:
|
364
|
-
Updated the minimum version in the link-grammar gem requirement to
|
365
|
-
4.3.9.
|
366
|
-
[f3db13a46463]
|
367
|
-
|
368
|
-
2008-11-19 Michael Granger <ged@FaerieMUD.org>
|
369
|
-
|
370
|
-
* README:
|
371
|
-
Ye gods. Re-re-undoing clobbered README, hopefully for the last
|
372
|
-
time.
|
373
|
-
[caa543471718]
|
374
|
-
|
375
|
-
* ChangeLog, README, Rakefile, project.yml:
|
376
|
-
Updated build system.
|
377
|
-
[b7a43f58e6d5]
|
378
|
-
|
379
|
-
* ChangeLog, ext/extconf.rb, spec/linkage_spec.rb:
|
380
|
-
* Revert an accidentally-clobbered fix for linkage_spec.rb.
|
381
|
-
* Rearranged ext/extconf.rb to hopefully fix the build for FreeBSD.
|
382
|
-
[7e0f95390f32]
|
383
|
-
|
384
|
-
* README, Rakefile.local:
|
385
|
-
* Reverted accidentally-overwritten README
|
386
|
-
* Cleaned up the local rakefile a bit
|
387
|
-
[fd3bf930eebb]
|
388
|
-
|
389
|
-
2008-11-18 Michael Granger <ged@FaerieMUD.org>
|
390
|
-
|
391
|
-
* ChangeLog, Rakefile.local:
|
392
|
-
Fixed a build message.
|
393
|
-
[dd810dad718c]
|
394
|
-
|
395
|
-
* INSTALL, Rakefile:
|
396
|
-
Updated the build system to fix the problems with building the Gem.
|
397
|
-
[bda132a55cd0]
|
398
|
-
|
399
|
-
* ChangeLog, LICENSE, README, Rakefile, Rakefile.local,
|
400
|
-
ext/TEMPLATE.c.tpl, ext/dictionary.c, ext/extconf.rb, ext/linkage.c,
|
401
|
-
ext/linkparser.c, ext/linkparser.h, ext/parseoptions.c,
|
402
|
-
ext/sentence.c, misc/monkeypatches.rb, spec/bugfixes_spec.rb,
|
403
|
-
spec/dictionary_spec.rb, spec/linkage_spec.rb,
|
404
|
-
spec/parseoptions_spec.rb, spec/sentence_spec.rb:
|
405
|
-
* Ditched Mkrf for mkmf. This makes me sad, but Mkrf just failed on
|
406
|
-
too many systems, and was hard to integrate into gem.
|
407
|
-
* Updated build system.
|
408
|
-
* Fixed gem packaging (I think).
|
409
|
-
* Updated copyright and other header stuff.
|
410
|
-
* Fixed a bunch of RDoc comments
|
411
|
-
* Converted a bunch of K&R-style functions to ANSI-style.
|
412
|
-
[114cbae39ab0]
|
413
|
-
|
414
|
-
2008-11-17 Michael Granger <ged@FaerieMUD.org>
|
415
|
-
|
416
|
-
* INSTALL:
|
417
|
-
Updated build instructions.
|
418
|
-
[250ffad00067]
|
419
|
-
|
420
|
-
2008-11-16 Michael Granger <ged@FaerieMUD.org>
|
421
|
-
|
422
|
-
* ChangeLog, ext/dictionary.c, ext/linkparser.c, ext/linkparser.h:
|
423
|
-
Replaced my naive initialization of the locale system with the
|
424
|
-
recommended code from the docs.
|
425
|
-
[220772ab1807]
|
426
|
-
|
427
|
-
2008-11-15 Michael Granger <ged@FaerieMUD.org>
|
428
|
-
|
429
|
-
* ChangeLog, lib/linkparser.rb:
|
430
|
-
Bumping the version, fixing docs.
|
431
|
-
[70b036839511]
|
432
|
-
|
433
|
-
* ChangeLog, README, Rakefile, Rakefile.local, ext/linkage.c,
|
434
|
-
lib/linkparser/linkage.rb, link-grammar-4.3.5.patch, link-
|
435
|
-
grammar-4.3.9.patch, misc/monkeypatches.rb, project.yml,
|
436
|
-
spec/linkage_spec.rb:
|
437
|
-
* Updated the binding to build against 4.3.9.
|
438
|
-
* Removed the necessity of building against a patched link-grammar
|
439
|
-
library. Removed the stuff from the patch that was no longer
|
440
|
-
necessary since 4.3.9 now include the necessary memory-freeing
|
441
|
-
functions, and no longer printf()s warnings without adhering to the
|
442
|
-
warning level.
|
443
|
-
* Updated the build system.
|
444
|
-
* Still needs more work before it can be gemmed up, but it's close.
|
445
|
-
* Thanks, as always, to Martin Chase for many useful suggestions and
|
446
|
-
help.
|
447
|
-
[70a576405b7e]
|
448
|
-
|
449
|
-
2008-08-20 Michael Granger <ged@FaerieMUD.org>
|
450
|
-
|
451
|
-
* ChangeLog, Rakefile.local, ext/extconf.rb:
|
452
|
-
* Removed the old extension config script
|
453
|
-
* Updated Rakefile.local with the right extension, and added the .so
|
454
|
-
to the CLOBBER files.
|
455
|
-
[a1873e388223]
|
456
|
-
|
457
|
-
* lib/linkparser.rb, makedist.rb:
|
458
|
-
* Removed the makedist.rb script.
|
459
|
-
* Bumped version to 1.0.2.
|
460
|
-
[06fb7f837f21]
|
461
|
-
|
462
|
-
* LICENSE, README:
|
463
|
-
Updated README and LICENSE files.
|
464
|
-
[3d0bfed29b61]
|
465
|
-
|
466
|
-
* ChangeLog, README, Rakefile, project.yml:
|
467
|
-
Updated the build system.
|
468
|
-
[c4b102ce866c]
|
469
|
-
|
470
|
-
2008-08-13 Michael Granger <ged@FaerieMUD.org>
|
471
|
-
|
472
|
-
* ChangeLog, LICENSE, LinkParser Project.tmproj, MANIFEST, Rakefile,
|
473
|
-
Rakefile.local, experiments/diagram_sentences.rb,
|
474
|
-
experiments/dumplinks.rb, experiments/pps.rb, linkparser-path.rb,
|
475
|
-
loadpath.rb, misc/rake/helpers.rb, misc/rake/svn.rb,
|
476
|
-
misc/rake/verifytask.rb, project.yml, spec/TEMPLATE.rb.tpl,
|
477
|
-
spec/bugfixes_spec.rb, spec/dictionary_spec.rb,
|
478
|
-
spec/linkage_spec.rb, spec/parseoptions_spec.rb,
|
479
|
-
spec/sentence_spec.rb:
|
480
|
-
* Updated to the latest build system.
|
481
|
-
* Updated to New BSD license
|
482
|
-
* Renamed 'linkparser-path.rb' to 'loadpath.rb'
|
483
|
-
[a46d68b427e5]
|
484
|
-
|
485
|
-
2008-06-23 Michael Granger <ged@FaerieMUD.org>
|
486
|
-
|
487
|
-
* Rakefile:
|
488
|
-
Turning off Darkfish until I can port it to RDoc 2.
|
489
|
-
[5bcdb973b956]
|
490
|
-
|
491
|
-
2008-05-27 Michael Granger <ged@FaerieMUD.org>
|
492
|
-
|
493
|
-
* MANIFEST, README, Rakefile, docs/CATALOG, docs/makedocs.rb,
|
494
|
-
extconf.rb:
|
495
|
-
* Cleaned up some old documentation cruft
|
496
|
-
* Fixed the link-grammar version mentioned in the README file
|
497
|
-
[d67f8622dbb0] [SNAPSHOT_20080526.4]
|
498
|
-
|
499
|
-
2008-05-26 Michael Granger <ged@FaerieMUD.org>
|
500
|
-
|
501
|
-
* INSTALL, Rakefile:
|
502
|
-
* Added better handling of missing 'mkrf' dependency.
|
503
|
-
* Added some more instructions to INSTALL.
|
504
|
-
[22b8dffbad11] [SNAPSHOT_20080526.2, SNAPSHOT_20080526.3]
|
505
|
-
|
506
|
-
* .irbrc, INSTALL, README, Rakefile, ext/linkage.c,
|
507
|
-
lib/linkparser/linkage.rb, misc/monkeypatches.rb, misc/readme-
|
508
|
-
example.rb, spec/linkage_spec.rb:
|
509
|
-
* Fixed the Mkrf-generated Rakefile so it'll actually install the
|
510
|
-
extension; this requires a monkeypatch currently, but I'll
|
511
|
-
upstream the fix to the Mkrf guys.
|
512
|
-
* Fixed some warnings in linkage.c
|
513
|
-
* Fixed the INSTALL instructions
|
514
|
-
* Fixed up the example in the README and extracted the code to ease
|
515
|
-
future testing.
|
516
|
-
* Fixed a bug in the suffix-stripping in the Linkage#subject and
|
517
|
-
#object methods.
|
518
|
-
[5b9a36fbd939] [SNAPSHOT_20080526]
|
519
|
-
|
520
|
-
* LinkParser Project.tmproj, Rakefile, install.rb, lib/linkparser.rb,
|
521
|
-
link-grammar-4.2.4.patch, link-grammar-4.3.5.patch,
|
522
|
-
misc/rake/helpers.rb, misc/rake/svn.rb, misc/rake/verifytask.rb,
|
523
|
-
spec/linkage_spec.rb, spec/sentence.tests.rb, spec/sentence_spec.rb:
|
524
|
-
* Finished conversion of test::unit tests to RSpec.
|
525
|
-
* Fleshed out Rake-based build system
|
526
|
-
* Updated to work with the latest Abiword link-grammar library (4.3.5)
|
527
|
-
[c4f4cf3f7184]
|
528
|
-
|
529
|
-
2008-02-10 Michael Granger <ged@FaerieMUD.org>
|
530
|
-
|
531
|
-
* LinkParser Project.tmproj, Rakefile, ext/TEMPLATE.c.tpl,
|
532
|
-
ext/dictionary.c, ext/extconf.rb, ext/linkage.c, ext/linkparser.c,
|
533
|
-
ext/linkparser.h, ext/parseoptions.c, ext/sentence.c,
|
534
|
-
lib/linkparser.rb, lib/linkparser/linkage.rb,
|
535
|
-
lib/linkparser/sentence.rb, spec/bugfixes_spec.rb,
|
536
|
-
spec/dictionary_spec.rb, spec/linkage_spec.rb,
|
537
|
-
spec/parseoptions.tests.rb, spec/parseoptions_spec.rb,
|
538
|
-
spec/sentence.tests.rb:
|
539
|
-
* Updated copyright date.
|
540
|
-
* Converted ParseOptions tests to RSpec.
|
541
|
-
[42299c3fb1f9]
|
542
|
-
|
543
|
-
2007-10-19 Michael Granger <ged@FaerieMUD.org>
|
544
|
-
|
545
|
-
* Rakefile, docs/CATALOG, docs/makedocs.rb, ext/dictionary.c,
|
546
|
-
ext/linkage.c, ext/linkparser.c, ext/parseoptions.c, ext/sentence.c,
|
547
|
-
lib/linkparser/linkage.rb, lib/linkparser/sentence.rb, test.rb:
|
548
|
-
Documentation fixes; converted to Darkfish RDoc generator
|
549
|
-
[48ea2b3f17b0]
|
550
|
-
|
551
|
-
2007-07-27 Michael Granger <ged@FaerieMUD.org>
|
552
|
-
|
553
|
-
* README, docs/CATALOG, ext/linkage.c, ext/parseoptions.c,
|
554
|
-
ext/sentence.c, lib/linkparser/sentence.rb:
|
555
|
-
Checkpoint commit
|
556
|
-
[0e29e6fc9219] [RELEASE_0_0_3]
|
557
|
-
|
558
|
-
2007-07-25 Michael Granger <ged@FaerieMUD.org>
|
559
|
-
|
560
|
-
* LinkParser Project.tmproj, Rakefile, experiments/dumplinks.rb,
|
561
|
-
ext/TEMPLATE.c.tpl, ext/dictionary.c, ext/linkage.c,
|
562
|
-
ext/linkparser.c, ext/linkparser.h, ext/parseoptions.c,
|
563
|
-
ext/sentence.c, lib/linkparser.rb, lib/linkparser/linkage.rb,
|
564
|
-
lib/linkparser/sentence.rb, linkparser-path.rb,
|
565
|
-
spec/TEMPLATE.rb.tpl, spec/bugfixes_spec.rb,
|
566
|
-
spec/dictionary_spec.rb, spec/linkage_spec.rb,
|
567
|
-
spec/parseoptions.tests.rb, spec/sentence.tests.rb,
|
568
|
-
tests/TEMPLATE.rb.tpl, tests/dictionary.tests.rb,
|
569
|
-
tests/linkage.tests.rb, tests/parseoptions.tests.rb,
|
570
|
-
tests/sentence.tests.rb, utils.rb:
|
571
|
-
* Started converting build system, test::unit -> rspec, etc.
|
572
|
-
[f479d2e87648]
|
573
|
-
|
574
|
-
2007-06-11 Michael Granger <ged@FaerieMUD.org>
|
575
|
-
|
576
|
-
* INSTALL:
|
577
|
-
Added some stuff to the build instructions
|
578
|
-
[0792048ccd29]
|
579
|
-
|
580
|
-
2006-10-30 Martin Chase <stillflame@FaerieMUD.org>
|
581
|
-
|
582
|
-
* INSTALL, link-grammar-4.2.4.patch:
|
583
|
-
- added installation instructions
|
584
|
-
- added patching to link-grammar to pass tests
|
585
|
-
[c107bffc8ad4] [RELEASE_20061030]
|
586
|
-
|
587
|
-
2006-10-29 Martin Chase <stillflame@FaerieMUD.org>
|
588
|
-
|
589
|
-
* tests/linkage.tests.rb:
|
590
|
-
- added test that breaks with version 4.2.4 of link-parser due to
|
591
|
-
lack of "linkage_get_current_sublinkage" function
|
592
|
-
[8ac429fa4db9]
|
593
|
-
|
594
|
-
2006-10-11 Michael Granger <ged@FaerieMUD.org>
|
595
|
-
|
596
|
-
* LinkParser Project.tmproj, ext/sentence.c,
|
597
|
-
lib/linkparser/sentence.rb, tests/linkage.tests.rb,
|
598
|
-
tests/sentence.tests.rb:
|
599
|
-
* More documentation cleanup.
|
600
|
-
* Fixed Sentence#[]
|
601
|
-
* Added some more Sentence tests.
|
602
|
-
[374b81fd97a3]
|
603
|
-
|
604
|
-
* ext/dictionary.c, ext/linkage.c, ext/parseoptions.c, ext/sentence.c,
|
605
|
-
tests/linkage.tests.rb:
|
606
|
-
* Fixes for documentation
|
607
|
-
* Fixed constituent_tree_string's mode argument.
|
608
|
-
[d9ed64949272]
|
609
|
-
|
610
|
-
* MANIFEST:
|
611
|
-
*Added MANIFEST file for makedist.rb.
|
612
|
-
[c4764563d4ac]
|
613
|
-
|
614
|
-
2006-10-10 Michael Granger <ged@FaerieMUD.org>
|
615
|
-
|
616
|
-
* makedist.rb, utils.rb:
|
617
|
-
* Dist-script fixes.
|
618
|
-
[028c5a1b8fce]
|
619
|
-
|
620
|
-
* ext/extconf.rb, extconf.rb, install.rb, test.rb:
|
621
|
-
* Finished up installation/build/test utility scripts.
|
622
|
-
[c88077e91937]
|
623
|
-
|
624
|
-
2006-09-29 Michael Granger <ged@FaerieMUD.org>
|
625
|
-
|
626
|
-
* .irbrc, LinkParser Project.tmproj, experiments/diagram_sentences.rb,
|
627
|
-
experiments/pps.rb, ext/extconf.rb, ext/linkage.c, ext/linkparser.c,
|
628
|
-
ext/linkparser.h, ext/sentence.c, lib/linkparser.rb,
|
629
|
-
lib/linkparser/linkage.rb, lib/linkparser/sentence.rb, link-
|
630
|
-
grammar-4.2.2.patch, linkparser-path.rb, test.rb,
|
631
|
-
tests/dictionary.tests.rb, tests/linkage.tests.rb,
|
632
|
-
tests/parseoptions.tests.rb, tests/sentence.tests.rb:
|
633
|
-
* Mostly all of the low-level function wrapped.
|
634
|
-
* Added some high-level methods on Linkages.
|
635
|
-
[89aed2053125]
|
636
|
-
|
637
|
-
2006-09-18 Michael Granger <ged@FaerieMUD.org>
|
638
|
-
|
639
|
-
* LinkParser Project.tmproj, ext/linkage.c, extconf.rb, link-
|
640
|
-
grammar-4.2.4.patch, tests/linkage.tests.rb:
|
641
|
-
* Updated for and included LinkGrammar 4.2.4
|
642
|
-
* Fixed weird typo
|
643
|
-
[fbc91fcdb72c]
|
644
|
-
|
645
|
-
2006-07-29 Michael Granger <ged@FaerieMUD.org>
|
646
|
-
|
647
|
-
* .irbrc, LinkParser Project.tmproj, docs/link-includes.h,
|
648
|
-
ext/linkage.c, extconf.rb, test.rb, tests/linkage.tests.rb,
|
649
|
-
tests/sentence.tests.rb:
|
650
|
-
Checkpoint commit:
|
651
|
-
|
652
|
-
* Fleshed out LinkParser::Linkage a bit more (not yet complete)
|
653
|
-
* Gave up on running tests with testrb and imported test.rb from
|
654
|
-
project-utils.
|
655
|
-
* Added TextMate project file
|
656
|
-
* Added an .irbrc
|
657
|
-
[ae31f32b36bb]
|
658
|
-
|
659
|
-
2006-07-21 Michael Granger <ged@FaerieMUD.org>
|
660
|
-
|
661
|
-
* docs/CATALOG, docs/basic-api.rb, docs/makedocs.rb, docs/public-
|
662
|
-
functions.h, experiments/diagram_sentences.rb,
|
663
|
-
experiments/free_stuff.rb, ext/TEMPLATE.c.tpl, ext/dictionary.c,
|
664
|
-
ext/extconf.rb, ext/linkage.c, ext/linkparser.c, ext/linkparser.h,
|
665
|
-
ext/parseoptions.c, ext/sentence.c, extconf.rb, link-
|
666
|
-
grammar-4.2.2.patch, makedist.rb, tests/TEMPLATE.rb.tpl,
|
667
|
-
tests/dictionary.tests.rb, tests/parseoptions.tests.rb,
|
668
|
-
tests/sentence.tests.rb, utils.rb:
|
669
|
-
* Checkpoint: First semi-useful version.
|
670
|
-
[ddc50a85954a]
|