linkparser 1.1.0 → 1.1.2
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 +654 -185
- data/History.md +17 -0
- data/LICENSE +1 -1
- data/README.md +84 -72
- data/Rakefile +68 -338
- data/Users/mgranger/source/ruby/LinkParser/ext/extconf.rb +38 -0
- data/ext/dictionary.c +1 -1
- data/ext/extconf.rb +12 -76
- data/ext/linkage.c +1 -1
- data/ext/linkparser.c +1 -1
- data/ext/linkparser.h +3 -4
- data/ext/parseoptions.c +1 -1
- data/ext/sentence.c +1 -1
- data/lib/linkparser.rb +7 -2
- data/lib/linkparser/linkage.rb +10 -12
- data/lib/linkparser/sentence.rb +2 -2
- data/spec/bugfixes_spec.rb +1 -1
- data/spec/linkparser/dictionary_spec.rb +1 -1
- data/spec/linkparser/linkage_spec.rb +13 -9
- data/spec/linkparser/mixins_spec.rb +1 -1
- data/spec/linkparser/parseoptions_spec.rb +1 -1
- data/spec/linkparser/sentence_spec.rb +1 -1
- data/spec/linkparser_spec.rb +1 -1
- metadata +133 -67
- metadata.gz.sig +0 -0
- data/Rakefile.local +0 -57
- 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.tar.gz.sig
CHANGED
Binary file
|
data/.gemtest
ADDED
File without changes
|
data/ChangeLog
CHANGED
@@ -1,201 +1,670 @@
|
|
1
|
-
|
2
|
-
Added tag v1.1.0 for changeset 8d9184b82361
|
1
|
+
2011-05-12 Michael Granger <ged@FaerieMUD.org>
|
3
2
|
|
4
|
-
|
5
|
-
|
3
|
+
* .hgtags:
|
4
|
+
Added tag v1.1.2 for changeset dc1f658653c5
|
5
|
+
[c29cb448e28d] [tip]
|
6
6
|
|
7
|
-
|
8
|
-
|
7
|
+
* .hgsigs:
|
8
|
+
Added signature for changeset a22b9ce4e964
|
9
|
+
[dc1f658653c5] [v1.1.2]
|
9
10
|
|
10
|
-
|
11
|
-
|
11
|
+
* lib/linkparser.rb:
|
12
|
+
Bump patch version for release.
|
13
|
+
[a22b9ce4e964]
|
12
14
|
|
13
|
-
|
14
|
-
Adding the rake tasklibs as a subrepo
|
15
|
+
* Merge pull request #2 from AlessandroBerardi/patch-1
|
15
16
|
|
16
|
-
|
17
|
-
|
17
|
+
Fixes package configuration options concatenation bug
|
18
|
+
[445659b4f1b0] [github/master]
|
18
19
|
|
19
|
-
|
20
|
-
Make the extconf use pkgconfig, if available, and add support for fat binary gems.
|
20
|
+
2011-05-11 Alessandro Berardi <berardialessandro@gmail.com>
|
21
21
|
|
22
|
-
|
23
|
-
|
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]
|
24
27
|
|
25
|
-
|
26
|
-
Updated build system, updated to link-grammar 4.6.7.
|
28
|
+
2011-04-04 Michael Granger <ged@FaerieMUD.org>
|
27
29
|
|
28
|
-
|
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]
|
30
34
|
|
31
|
-
|
32
|
-
|
35
|
+
* Rakefile:
|
36
|
+
The rake-compiler target lives in the LIBDIR, not the EXTDIR.
|
37
|
+
[522421b6ed6e]
|
33
38
|
|
34
|
-
|
35
|
-
|
39
|
+
* Rakefile:
|
40
|
+
Fixed the gemtest workaround in the Rakefile
|
41
|
+
[543559d41600]
|
36
42
|
|
37
|
-
|
38
|
-
|
43
|
+
* README.md:
|
44
|
+
README doesn't need to be executable
|
45
|
+
[731894db5b82]
|
39
46
|
|
40
|
-
|
41
|
-
|
47
|
+
* ext/linkparser.h:
|
48
|
+
Fix the includes (local vs. system)
|
49
|
+
[65471608cc6e]
|
42
50
|
|
43
|
-
|
44
|
-
|
51
|
+
* Rakefile:
|
52
|
+
Make the Rakefile more generically-useful
|
53
|
+
[e6207a7e6552]
|
45
54
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
50 4a8ce753a9c3 2009-08-15 22:17 +0000 convert-repo
|
50
|
-
update tags
|
51
|
-
|
52
|
-
49 2c8e8cb06c3b 2009-06-23 06:45 +0000 ged
|
53
|
-
Bumping version to 1.0.5.
|
54
|
-
|
55
|
-
48 f5f4594dd39f 2009-06-19 15:09 +0000 ged
|
56
|
-
Fixed problems with the specs run on systems with non-English locales (fixes #7).
|
57
|
-
|
58
|
-
47 429b51840402 2009-06-19 14:38 +0000 ged
|
59
|
-
* Updated build system
|
60
|
-
|
61
|
-
46 3874f74ac1c8 2009-06-09 06:21 +0000 ged
|
62
|
-
* Updated versions of the link-grammar library referenced in the docs.
|
63
|
-
|
64
|
-
45 42c88c8e05d8 2009-06-03 14:29 +0000 ged
|
65
|
-
Removing old link-grammar library
|
66
|
-
|
67
|
-
44 bf39b0b0cdd8 2009-06-03 12:52 +0000 ged
|
68
|
-
* Updated to link-grammar-4.5.6.
|
69
|
-
|
70
|
-
43 20736e24100a 2009-03-18 21:51 +0000 ged
|
71
|
-
* Update license year.
|
72
|
-
|
73
|
-
42 7aa8abf83338 2008-12-20 19:51 +0000 ged
|
74
|
-
* Removed some more unnecessary files from the gem distribution to reduce size.
|
75
|
-
|
76
|
-
41 5c4731910056 2008-12-19 18:30 +0000 ged
|
77
|
-
* Updated build system
|
78
|
-
|
79
|
-
40 c4c13596d339 2008-12-18 17:03 +0000 ged
|
80
|
-
* Updated build system
|
81
|
-
|
82
|
-
39 af56b6e1e3d2 2008-11-20 19:34 +0000 ged
|
83
|
-
Updated the minimum version in the link-grammar gem requirement to 4.3.9.
|
84
|
-
|
85
|
-
38 02bf1158d4a0 2008-11-19 23:42 +0000 ged
|
86
|
-
Ye gods. Re-re-undoing clobbered README, hopefully for the last time.
|
87
|
-
|
88
|
-
37 ca0e32083a45 2008-11-19 23:34 +0000 ged
|
89
|
-
Updated build system.
|
90
|
-
|
91
|
-
36 0e3a825361bb 2008-11-19 23:01 +0000 ged
|
92
|
-
* Revert an accidentally-clobbered fix for linkage_spec.rb.
|
93
|
-
|
94
|
-
35 f08d0eb5d2e8 2008-11-19 22:43 +0000 ged
|
95
|
-
* Reverted accidentally-overwritten README
|
96
|
-
|
97
|
-
34 27775f8f244b 2008-11-18 17:00 +0000 ged
|
98
|
-
Fixed a build message.
|
99
|
-
|
100
|
-
33 ebbea97b275e 2008-11-18 16:53 +0000 ged
|
101
|
-
Updated the build system to fix the problems with building the Gem.
|
102
|
-
|
103
|
-
32 e7460a4e3501 2008-11-18 16:18 +0000 ged
|
104
|
-
* Ditched Mkrf for mkmf. This makes me sad, but Mkrf just failed on too many
|
105
|
-
|
106
|
-
31 f0ef418ba1ca 2008-11-17 16:10 +0000 ged
|
107
|
-
Updated build instructions.
|
108
|
-
|
109
|
-
30 c22663cd2638 2008-11-16 02:17 +0000 ged
|
110
|
-
Replaced my naive initialization of the locale system with the recommended code from the docs.
|
111
|
-
|
112
|
-
29 d84122ea3856 2008-11-15 19:54 +0000 ged
|
113
|
-
Bumping the version, fixing docs.
|
114
|
-
|
115
|
-
28 bc86861a3c3a 2008-11-15 19:44 +0000 ged
|
116
|
-
* Updated the binding to build against 4.3.9.
|
117
|
-
|
118
|
-
27 5d57cb89e697 2008-08-20 07:22 +0000 ged
|
119
|
-
* Removed the old extension config script
|
120
|
-
|
121
|
-
26 44ddd3cdfadd 2008-08-20 07:13 +0000 ged
|
122
|
-
* Removed the makedist.rb script.
|
123
|
-
|
124
|
-
25 06023c771cf2 2008-08-20 07:04 +0000 ged
|
125
|
-
Updated README and LICENSE files.
|
126
|
-
|
127
|
-
24 4d19b1fbc6ff 2008-08-20 06:51 +0000 ged
|
128
|
-
Updated the build system.
|
129
|
-
|
130
|
-
23 ceda202cef3e 2008-08-13 05:23 +0000 ged
|
131
|
-
* Updated to the latest build system.
|
132
|
-
|
133
|
-
22 c0d61add698a 2008-06-23 22:05 +0000 ged
|
134
|
-
Turning off Darkfish until I can port it to RDoc 2.
|
135
|
-
|
136
|
-
21[SNAPSHOT_20080526.4] db47386fa721 2008-05-27 00:17 +0000 ged
|
137
|
-
* Cleaned up some old documentation cruft
|
138
|
-
|
139
|
-
20[SNAPSHOT_20080526.2,SNAPSHOT_20080526.3] d62a038de485 2008-05-26 23:40 +0000 ged
|
140
|
-
* Added better handling of missing 'mkrf' dependency.
|
141
|
-
|
142
|
-
19[SNAPSHOT_20080526] a6c768b00af5 2008-05-26 23:17 +0000 ged
|
143
|
-
* Fixed the Mkrf-generated Rakefile so it'll actually install the extension; this
|
144
|
-
|
145
|
-
18 272202feaff9 2008-05-26 21:49 +0000 ged
|
146
|
-
* Finished conversion of test::unit tests to RSpec.
|
147
|
-
|
148
|
-
17 2cb5cdacb930 2008-02-10 21:48 +0000 ged
|
149
|
-
* Updated copyright date.
|
150
|
-
|
151
|
-
16 5867d7624144 2007-10-19 01:06 +0000 ged
|
152
|
-
Documentation fixes; converted to Darkfish RDoc generator
|
153
|
-
|
154
|
-
15[RELEASE_0_0_3] aa894a3e98fc 2007-07-27 07:40 +0000 ged
|
155
|
-
Checkpoint commit
|
156
|
-
|
157
|
-
14 404d5da9a837 2007-07-25 02:00 +0000 ged
|
158
|
-
* Started converting build system, test::unit -> rspec, etc.
|
159
|
-
|
160
|
-
13 f1f118da86b8 2007-06-11 14:55 +0000 ged
|
161
|
-
Added some stuff to the build instructions
|
162
|
-
|
163
|
-
12 c577a697ff9a 2007-06-11 14:52 +0000 ged
|
164
|
-
Adding project-name and project-version svn attributes
|
165
|
-
|
166
|
-
11[RELEASE_20061030] eb5d51d7be8e 2006-10-30 07:04 +0000 stillflame
|
167
|
-
- added installation instructions
|
168
|
-
|
169
|
-
10 264b76691d9b 2006-10-29 02:01 +0000 stillflame
|
170
|
-
- added test that breaks with version 4.2.4 of link-parser due to lack of "linkage_get_current_sublinkage" function
|
171
|
-
|
172
|
-
9 e013761045ac 2006-10-11 05:40 +0000 ged
|
173
|
-
* More documentation cleanup.
|
174
|
-
|
175
|
-
8 0b63ffa46d1e 2006-10-11 00:46 +0000 ged
|
176
|
-
* Fixes for documentation
|
177
|
-
|
178
|
-
7 08fee271c73a 2006-10-11 00:14 +0000 ged
|
179
|
-
*Added MANIFEST file for makedist.rb.
|
180
|
-
|
181
|
-
6 a78325f8401e 2006-10-10 23:31 +0000 ged
|
182
|
-
* Dist-script fixes.
|
183
|
-
|
184
|
-
5 119a16871bdf 2006-10-10 23:16 +0000 ged
|
185
|
-
* Finished up installation/build/test utility scripts.
|
186
|
-
|
187
|
-
4 8a083dc3bab6 2006-09-29 14:14 +0000 ged
|
188
|
-
* Mostly all of the low-level function wrapped.
|
189
|
-
|
190
|
-
3 cf1112e9324c 2006-09-18 00:19 +0000 ged
|
191
|
-
* Updated for and included LinkGrammar 4.2.4
|
192
|
-
|
193
|
-
2 77d2e5a3753e 2006-07-29 21:59 +0000 ged
|
194
|
-
Checkpoint commit:
|
195
|
-
|
196
|
-
1 b6bcea18f1cc 2006-07-21 18:23 +0000 ged
|
197
|
-
* Checkpoint: First semi-useful version.
|
198
|
-
|
199
|
-
0 9b583e704a67 2006-07-02 05:43 +0000 ged
|
200
|
-
- Initial repository structure import
|
55
|
+
* README.md:
|
56
|
+
Clean up the README
|
57
|
+
[41e337b64d61]
|
201
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]
|