Linguistics 1.0.3
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.
- data/Artistic +127 -0
- data/ChangeLog +444 -0
- data/MANIFEST +19 -0
- data/README +178 -0
- data/README.english +245 -0
- data/TODO +17 -0
- data/experiments/randobjlist.rb +34 -0
- data/install.rb +154 -0
- data/lib/linguistics/en/infinitive.rb +1149 -0
- data/lib/linguistics/en/linkparser.rb +142 -0
- data/lib/linguistics/en/wordnet.rb +253 -0
- data/lib/linguistics/en.rb +1694 -0
- data/lib/linguistics/iso639.rb +456 -0
- data/lib/linguistics.rb +368 -0
- data/redist/crosscase.rb +298 -0
- data/test.rb +110 -0
- data/tests/en/conjunction.tests.rb +114 -0
- data/tests/en/inflect.tests.rb +1378 -0
- data/tests/lingtestcase.rb +239 -0
- data/tests/use.tests.rb +99 -0
- data/utils.rb +689 -0
- metadata +58 -0
data/Artistic
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
= The "Artistic License"
|
2
|
+
|
3
|
+
== Preamble
|
4
|
+
|
5
|
+
The intent of this document is to state the conditions under which a
|
6
|
+
Package may be copied, such that the Copyright Holder maintains some
|
7
|
+
semblance of artistic control over the development of the package,
|
8
|
+
while giving the users of the package the right to use and distribute
|
9
|
+
the Package in a more-or-less customary fashion, plus the right to make
|
10
|
+
reasonable modifications.
|
11
|
+
|
12
|
+
== Definitions
|
13
|
+
|
14
|
+
"Package" refers to the collection of files distributed by the
|
15
|
+
Copyright Holder, and derivatives of that collection of files
|
16
|
+
created through textual modification.
|
17
|
+
|
18
|
+
"Standard Version" refers to such a Package if it has not been
|
19
|
+
modified, or has been modified in accordance with the wishes
|
20
|
+
of the Copyright Holder as specified below.
|
21
|
+
|
22
|
+
"Copyright Holder" is whoever is named in the copyright or
|
23
|
+
copyrights for the package.
|
24
|
+
|
25
|
+
"You" is you, if you're thinking about copying or distributing
|
26
|
+
this Package.
|
27
|
+
|
28
|
+
"Reasonable copying fee" is whatever you can justify on the
|
29
|
+
basis of media cost, duplication charges, time of people involved,
|
30
|
+
and so on. (You will not be required to justify it to the
|
31
|
+
Copyright Holder, but only to the computing community at large
|
32
|
+
as a market that must bear the fee.)
|
33
|
+
|
34
|
+
"Freely Available" means that no fee is charged for the item
|
35
|
+
itself, though there may be fees involved in handling the item.
|
36
|
+
It also means that recipients of the item may redistribute it
|
37
|
+
under the same conditions they received it.
|
38
|
+
|
39
|
+
1. You may make and give away verbatim copies of the source form of the
|
40
|
+
Standard Version of this Package without restriction, provided that you
|
41
|
+
duplicate all of the original copyright notices and associated disclaimers.
|
42
|
+
|
43
|
+
2. You may apply bug fixes, portability fixes and other modifications
|
44
|
+
derived from the Public Domain or from the Copyright Holder. A Package
|
45
|
+
modified in such a way shall still be considered the Standard Version.
|
46
|
+
|
47
|
+
3. You may otherwise modify your copy of this Package in any way, provided
|
48
|
+
that you insert a prominent notice in each changed file stating how and
|
49
|
+
when you changed that file, and provided that you do at least ONE of the
|
50
|
+
following:
|
51
|
+
|
52
|
+
a. place your modifications in the Public Domain or otherwise make them
|
53
|
+
Freely Available, such as by posting said modifications to Usenet or
|
54
|
+
an equivalent medium, or placing the modifications on a major archive
|
55
|
+
site such as uunet.uu.net, or by allowing the Copyright Holder to include
|
56
|
+
your modifications in the Standard Version of the Package.
|
57
|
+
|
58
|
+
b. use the modified Package only within your corporation or organization.
|
59
|
+
|
60
|
+
c. rename any non-standard executables so the names do not conflict
|
61
|
+
with standard executables, which must also be provided, and provide
|
62
|
+
a separate manual page for each non-standard executable that clearly
|
63
|
+
documents how it differs from the Standard Version.
|
64
|
+
|
65
|
+
d. make other distribution arrangements with the Copyright Holder.
|
66
|
+
|
67
|
+
4. You may distribute the programs of this Package in object code or
|
68
|
+
executable form, provided that you do at least ONE of the following:
|
69
|
+
|
70
|
+
a. distribute a Standard Version of the executables and library files,
|
71
|
+
together with instructions (in the manual page or equivalent. on where
|
72
|
+
to get the Standard Version.
|
73
|
+
|
74
|
+
b. accompany the distribution with the machine-readable source of
|
75
|
+
the Package with your modifications.
|
76
|
+
|
77
|
+
c. give non-standard executables non-standard names, and clearly
|
78
|
+
document the differences in manual pages (or equivalent., together
|
79
|
+
with instructions on where to get the Standard Version.
|
80
|
+
|
81
|
+
d. make other distribution arrangements with the Copyright Holder.
|
82
|
+
|
83
|
+
5. You may charge a reasonable copying fee for any distribution of this
|
84
|
+
Package. You may charge any fee you choose for support of this
|
85
|
+
Package. You may not charge a fee for this Package itself. However,
|
86
|
+
you may distribute this Package in aggregate with other (possibly
|
87
|
+
commercial) programs as part of a larger (possibly commercial) software
|
88
|
+
distribution provided that you do not advertise this Package as a
|
89
|
+
product of your own. You may embed this Package's interpreter within
|
90
|
+
an executable of yours (by linking); this shall be construed as a mere
|
91
|
+
form of aggregation, provided that the complete Standard Version of the
|
92
|
+
interpreter is so embedded.
|
93
|
+
|
94
|
+
6. The scripts and library files supplied as input to or produced as
|
95
|
+
output from the programs of this Package do not automatically fall
|
96
|
+
under the copyright of this Package, but belong to whoever generated
|
97
|
+
them, and may be sold commercially, and may be aggregated with this
|
98
|
+
Package. If such scripts or library files are aggregated with this
|
99
|
+
Package via the so-called "undump" or "unexec" methods of producing a
|
100
|
+
binary executable image, then distribution of such an image shall
|
101
|
+
neither be construed as a distribution of this Package nor shall it
|
102
|
+
fall under the restrictions of Paragraphs 3 and 4, provided that you do
|
103
|
+
not represent such an executable image as a Standard Version of this
|
104
|
+
Package.
|
105
|
+
|
106
|
+
7. C subroutines (or comparably compiled subroutines in other
|
107
|
+
languages) supplied by you and linked into this Package in order to
|
108
|
+
emulate subroutines and variables of the language defined by this
|
109
|
+
Package shall not be considered part of this Package, but are the
|
110
|
+
equivalent of input as in Paragraph 6, provided these subroutines do
|
111
|
+
not change the language in any way that would cause it to fail the
|
112
|
+
regression tests for the language.
|
113
|
+
|
114
|
+
8. Aggregation of this Package with a commercial distribution is always
|
115
|
+
permitted provided that the use of this Package is embedded; that is,
|
116
|
+
when no overt attempt is made to make this Package's interfaces visible
|
117
|
+
to the end user of the commercial distribution. Such use shall not be
|
118
|
+
construed as a distribution of this Package.
|
119
|
+
|
120
|
+
9. The name of the Copyright Holder may not be used to endorse or promote
|
121
|
+
products derived from this software without specific prior written permission.
|
122
|
+
|
123
|
+
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
124
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
125
|
+
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
126
|
+
|
127
|
+
The End
|
data/ChangeLog
ADDED
@@ -0,0 +1,444 @@
|
|
1
|
+
------------------------------------------------------------------------
|
2
|
+
r82 | ged | 2005-07-13 19:09:21 -0400 (Wed, 13 Jul 2005) | 2 lines
|
3
|
+
|
4
|
+
- Ignored html directory.
|
5
|
+
|
6
|
+
------------------------------------------------------------------------
|
7
|
+
r81 | ged | 2005-07-13 18:35:45 -0400 (Wed, 13 Jul 2005) | 2 lines
|
8
|
+
|
9
|
+
- Merged changes from project-utils.
|
10
|
+
|
11
|
+
------------------------------------------------------------------------
|
12
|
+
r80 | ged | 2005-07-13 17:04:50 -0400 (Wed, 13 Jul 2005) | 2 lines
|
13
|
+
|
14
|
+
Initial checkin. Fixes #3.
|
15
|
+
|
16
|
+
------------------------------------------------------------------------
|
17
|
+
r79 | ged | 2005-07-13 16:18:54 -0400 (Wed, 13 Jul 2005) | 2 lines
|
18
|
+
|
19
|
+
- Set svn:keyword
|
20
|
+
|
21
|
+
------------------------------------------------------------------------
|
22
|
+
r78 | ged | 2005-07-13 15:58:43 -0400 (Wed, 13 Jul 2005) | 5 lines
|
23
|
+
|
24
|
+
- Fixed up subversion constants
|
25
|
+
- Merged contributions from Francis Hwang <sera@fhwang.net>
|
26
|
+
(#camel_case_to_english, #english_to_camel_case, #proper_noun). Closes #2
|
27
|
+
- Set svn:keyword
|
28
|
+
|
29
|
+
------------------------------------------------------------------------
|
30
|
+
r77 | ged | 2005-07-13 08:46:29 -0400 (Wed, 13 Jul 2005) | 3 lines
|
31
|
+
|
32
|
+
- Added Subversion constants
|
33
|
+
- Cleaned up comments for language proxy class.
|
34
|
+
|
35
|
+
------------------------------------------------------------------------
|
36
|
+
r76 | ged | 2005-07-13 08:43:53 -0400 (Wed, 13 Jul 2005) | 2 lines
|
37
|
+
|
38
|
+
Initial checkin.
|
39
|
+
|
40
|
+
------------------------------------------------------------------------
|
41
|
+
r75 | ged | 2005-07-13 08:42:30 -0400 (Wed, 13 Jul 2005) | 2 lines
|
42
|
+
|
43
|
+
Initial checkin.
|
44
|
+
|
45
|
+
------------------------------------------------------------------------
|
46
|
+
r74 | deveiant | 2004-05-08 15:15:04 -0400 (Sat, 08 May 2004) | 2 lines
|
47
|
+
|
48
|
+
- Added compatibility with Aoki-san's install.rb. Kind of.
|
49
|
+
|
50
|
+
------------------------------------------------------------------------
|
51
|
+
r73 | deveiant | 2004-05-08 15:07:51 -0400 (Sat, 08 May 2004) | 2 lines
|
52
|
+
|
53
|
+
- Bugfix: Linkparser should start out missing by default.
|
54
|
+
|
55
|
+
------------------------------------------------------------------------
|
56
|
+
r72 | deveiant | 2004-05-08 15:07:09 -0400 (Sat, 08 May 2004) | 3 lines
|
57
|
+
|
58
|
+
- Fixed to work even if it's not in the cwd. Thanks to batsman on
|
59
|
+
irc://irc.freenode.net/#ruby-lang for reporting this.
|
60
|
+
|
61
|
+
------------------------------------------------------------------------
|
62
|
+
r68 | deveiant | 2003-10-09 09:24:25 -0400 (Thu, 09 Oct 2003) | 2 lines
|
63
|
+
|
64
|
+
Initial checkin.
|
65
|
+
|
66
|
+
------------------------------------------------------------------------
|
67
|
+
r67 | deveiant | 2003-10-09 09:23:09 -0400 (Thu, 09 Oct 2003) | 4 lines
|
68
|
+
|
69
|
+
- Updated requirements list
|
70
|
+
|
71
|
+
- Removed unnecessary readline require
|
72
|
+
|
73
|
+
------------------------------------------------------------------------
|
74
|
+
r66 | deveiant | 2003-10-09 09:21:48 -0400 (Thu, 09 Oct 2003) | 3 lines
|
75
|
+
|
76
|
+
- Fixed requirements/optional libraries (Thanks to Yuri Leikind
|
77
|
+
<y.leikind@sam-solutions.net> for bringing this to my attention).
|
78
|
+
|
79
|
+
------------------------------------------------------------------------
|
80
|
+
r65 | deveiant | 2003-10-09 09:20:50 -0400 (Thu, 09 Oct 2003) | 6 lines
|
81
|
+
|
82
|
+
- Wildcarded everything under lib/ so new additions don't have to be explicitly
|
83
|
+
listed.
|
84
|
+
|
85
|
+
- Added README.english (Thanks to Yuri Leikind <y.leikind@sam-solutions.net> for
|
86
|
+
bringing this to my attention).
|
87
|
+
|
88
|
+
------------------------------------------------------------------------
|
89
|
+
r64 | deveiant | 2003-09-14 07:28:02 -0400 (Sun, 14 Sep 2003) | 7 lines
|
90
|
+
|
91
|
+
- Calls to #synset no longer trap parse errors. This was done for two reasons:
|
92
|
+
|
93
|
+
1. If the WordNet doesn't load, WordNet::ParseError is an undefined constant,
|
94
|
+
so the function fails with a semi-ambiguous error message.
|
95
|
+
|
96
|
+
2. The user of the library might wish to handle the parse failure herself.
|
97
|
+
|
98
|
+
------------------------------------------------------------------------
|
99
|
+
r63 | deveiant | 2003-09-14 07:20:51 -0400 (Sun, 14 Sep 2003) | 2 lines
|
100
|
+
|
101
|
+
- Added redist/ to $LOAD_PATH.
|
102
|
+
|
103
|
+
------------------------------------------------------------------------
|
104
|
+
r62 | deveiant | 2003-09-14 07:15:57 -0400 (Sun, 14 Sep 2003) | 4 lines
|
105
|
+
|
106
|
+
- Added synopsis of use to the comment header.
|
107
|
+
|
108
|
+
- Added reminder to finish documenting the auto-generated code.
|
109
|
+
|
110
|
+
------------------------------------------------------------------------
|
111
|
+
r61 | deveiant | 2003-09-14 07:15:33 -0400 (Sun, 14 Sep 2003) | 2 lines
|
112
|
+
|
113
|
+
- Added synopsis of use to the comment header.
|
114
|
+
|
115
|
+
------------------------------------------------------------------------
|
116
|
+
r60 | deveiant | 2003-09-14 07:15:18 -0400 (Sun, 14 Sep 2003) | 2 lines
|
117
|
+
|
118
|
+
- Added README.english
|
119
|
+
|
120
|
+
------------------------------------------------------------------------
|
121
|
+
r59 | deveiant | 2003-09-14 07:15:05 -0400 (Sun, 14 Sep 2003) | 2 lines
|
122
|
+
|
123
|
+
- Fixed screwed-up code resulting from broken paste.
|
124
|
+
|
125
|
+
------------------------------------------------------------------------
|
126
|
+
r58 | deveiant | 2003-09-14 07:14:28 -0400 (Sun, 14 Sep 2003) | 2 lines
|
127
|
+
|
128
|
+
- Added mention of README.english.
|
129
|
+
|
130
|
+
------------------------------------------------------------------------
|
131
|
+
r57 | deveiant | 2003-09-14 06:47:12 -0400 (Sun, 14 Sep 2003) | 2 lines
|
132
|
+
|
133
|
+
- Removed redundant mention of the WordNet module from the comment header.
|
134
|
+
|
135
|
+
------------------------------------------------------------------------
|
136
|
+
r56 | deveiant | 2003-09-14 06:45:01 -0400 (Sun, 14 Sep 2003) | 2 lines
|
137
|
+
|
138
|
+
- Fixed the comment header some more.
|
139
|
+
|
140
|
+
------------------------------------------------------------------------
|
141
|
+
r55 | deveiant | 2003-09-14 06:39:04 -0400 (Sun, 14 Sep 2003) | 2 lines
|
142
|
+
|
143
|
+
- Now installs the stuff in redist/ too.
|
144
|
+
|
145
|
+
------------------------------------------------------------------------
|
146
|
+
r54 | deveiant | 2003-09-14 06:36:00 -0400 (Sun, 14 Sep 2003) | 2 lines
|
147
|
+
|
148
|
+
- Changed pattern for the redist directory to catch any .rb files.
|
149
|
+
|
150
|
+
------------------------------------------------------------------------
|
151
|
+
r53 | deveiant | 2003-09-14 06:35:32 -0400 (Sun, 14 Sep 2003) | 2 lines
|
152
|
+
|
153
|
+
- Fixed names of constants to reduce the chances of collision.
|
154
|
+
|
155
|
+
------------------------------------------------------------------------
|
156
|
+
r52 | deveiant | 2003-09-14 06:33:01 -0400 (Sun, 14 Sep 2003) | 2 lines
|
157
|
+
|
158
|
+
Initial checkin from version 0.01 of CrossCase.
|
159
|
+
|
160
|
+
------------------------------------------------------------------------
|
161
|
+
r51 | deveiant | 2003-09-14 06:30:38 -0400 (Sun, 14 Sep 2003) | 3 lines
|
162
|
+
|
163
|
+
- Changed parsing of non-sentences to expect errors in accordance with changes
|
164
|
+
to the API of the LinkParser integration.
|
165
|
+
|
166
|
+
------------------------------------------------------------------------
|
167
|
+
r50 | deveiant | 2003-09-14 06:24:58 -0400 (Sun, 14 Sep 2003) | 3 lines
|
168
|
+
|
169
|
+
- Added CrossCase require/include to provide under_barred aliasing for camelCase
|
170
|
+
functions.
|
171
|
+
|
172
|
+
------------------------------------------------------------------------
|
173
|
+
r49 | deveiant | 2003-09-14 06:24:06 -0400 (Sun, 14 Sep 2003) | 4 lines
|
174
|
+
|
175
|
+
- Added Martin to the Authors list.
|
176
|
+
|
177
|
+
- Updated optional list.
|
178
|
+
|
179
|
+
------------------------------------------------------------------------
|
180
|
+
r48 | deveiant | 2003-09-14 06:23:19 -0400 (Sun, 14 Sep 2003) | 2 lines
|
181
|
+
|
182
|
+
Initial checkin.
|
183
|
+
|
184
|
+
------------------------------------------------------------------------
|
185
|
+
r47 | deveiant | 2003-09-14 05:29:15 -0400 (Sun, 14 Sep 2003) | 13 lines
|
186
|
+
|
187
|
+
- Touched up the file description a bit.
|
188
|
+
|
189
|
+
- @lpError now intitialized: bug spotted by Martin Chase.
|
190
|
+
|
191
|
+
- Calls to #linkParse no longer trap parse errors. This was done for two
|
192
|
+
reasons:
|
193
|
+
|
194
|
+
1. If the LinkParser module doesn't load, LinkParser::ParseError is an
|
195
|
+
undefined constant, so the function fails with a semi-ambiguous error
|
196
|
+
message.
|
197
|
+
|
198
|
+
2. The user of the library might wish to handle the parse failure herself.
|
199
|
+
|
200
|
+
------------------------------------------------------------------------
|
201
|
+
r46 | deveiant | 2003-09-11 01:04:55 -0400 (Thu, 11 Sep 2003) | 2 lines
|
202
|
+
|
203
|
+
Checkpoint commit
|
204
|
+
|
205
|
+
------------------------------------------------------------------------
|
206
|
+
r45 | deveiant | 2003-09-11 01:04:04 -0400 (Thu, 11 Sep 2003) | 4 lines
|
207
|
+
|
208
|
+
- Added test for functional interface to auto-generated code.
|
209
|
+
|
210
|
+
- Removed tests of the 'use' function into their own test case.
|
211
|
+
|
212
|
+
------------------------------------------------------------------------
|
213
|
+
r44 | deveiant | 2003-09-11 01:03:12 -0400 (Thu, 11 Sep 2003) | 2 lines
|
214
|
+
|
215
|
+
- Added test for functional interface to auto-generated code.
|
216
|
+
|
217
|
+
------------------------------------------------------------------------
|
218
|
+
r43 | deveiant | 2003-09-11 01:02:32 -0400 (Thu, 11 Sep 2003) | 2 lines
|
219
|
+
|
220
|
+
Initial checkin.
|
221
|
+
|
222
|
+
------------------------------------------------------------------------
|
223
|
+
r42 | deveiant | 2003-09-11 01:02:04 -0400 (Thu, 11 Sep 2003) | 6 lines
|
224
|
+
|
225
|
+
- Fixed require block at the top.
|
226
|
+
|
227
|
+
- Changed name of intermediate class to reflect change in linguistics.rb.
|
228
|
+
|
229
|
+
- Fixed 1.8 complaint.
|
230
|
+
|
231
|
+
------------------------------------------------------------------------
|
232
|
+
r41 | deveiant | 2003-09-11 01:00:56 -0400 (Thu, 11 Sep 2003) | 4 lines
|
233
|
+
|
234
|
+
- Added a dummy test so if the tests for optional modules can't be run (because
|
235
|
+
the modules on which they depend aren't installed), it doesn't count as a
|
236
|
+
failure because there were no tests.
|
237
|
+
|
238
|
+
------------------------------------------------------------------------
|
239
|
+
r40 | deveiant | 2003-09-11 00:59:51 -0400 (Thu, 11 Sep 2003) | 2 lines
|
240
|
+
|
241
|
+
- Fixed leftover comment from copy.
|
242
|
+
|
243
|
+
------------------------------------------------------------------------
|
244
|
+
r39 | deveiant | 2003-09-11 00:57:46 -0400 (Thu, 11 Sep 2003) | 2 lines
|
245
|
+
|
246
|
+
- Fixed typo.
|
247
|
+
|
248
|
+
------------------------------------------------------------------------
|
249
|
+
r38 | deveiant | 2003-09-11 00:57:27 -0400 (Thu, 11 Sep 2003) | 7 lines
|
250
|
+
|
251
|
+
- Removed some more code for the aborted attempt to make the module
|
252
|
+
1.6-compatible.
|
253
|
+
|
254
|
+
- Added requires for new extensions 'wordnet', 'linkparser', and 'infinitive'.
|
255
|
+
|
256
|
+
- Updated docs in the header, though they're not yet ready for release.
|
257
|
+
|
258
|
+
------------------------------------------------------------------------
|
259
|
+
r37 | deveiant | 2003-09-11 00:55:11 -0400 (Thu, 11 Sep 2003) | 10 lines
|
260
|
+
|
261
|
+
- Changed name of "inflector" class to "languageProxy" to better fit what it
|
262
|
+
does.
|
263
|
+
|
264
|
+
- Added support for transparent delegator proxy methods.
|
265
|
+
|
266
|
+
- Added support for MyClass::extend( Linguistics ) and class MyClass; include
|
267
|
+
Linguistics; end.
|
268
|
+
|
269
|
+
- Modified code in #loadLanguage to minimize the number of requires.
|
270
|
+
|
271
|
+
------------------------------------------------------------------------
|
272
|
+
r36 | deveiant | 2003-09-11 00:52:32 -0400 (Thu, 11 Sep 2003) | 2 lines
|
273
|
+
|
274
|
+
- Added :installProxy config to the #use call.
|
275
|
+
|
276
|
+
------------------------------------------------------------------------
|
277
|
+
r35 | deveiant | 2003-09-11 00:52:03 -0400 (Thu, 11 Sep 2003) | 2 lines
|
278
|
+
|
279
|
+
Initial checkin.
|
280
|
+
|
281
|
+
------------------------------------------------------------------------
|
282
|
+
r34 | deveiant | 2003-09-11 00:51:41 -0400 (Thu, 11 Sep 2003) | 2 lines
|
283
|
+
|
284
|
+
- Added example output.
|
285
|
+
|
286
|
+
------------------------------------------------------------------------
|
287
|
+
r33 | deveiant | 2003-09-11 00:51:26 -0400 (Thu, 11 Sep 2003) | 3 lines
|
288
|
+
|
289
|
+
- Reworked to be more generically useful, and support parsing of options from
|
290
|
+
CATALOG file.
|
291
|
+
|
292
|
+
------------------------------------------------------------------------
|
293
|
+
r32 | deveiant | 2003-09-11 00:50:49 -0400 (Thu, 11 Sep 2003) | 2 lines
|
294
|
+
|
295
|
+
- Added rdoc-option header.
|
296
|
+
|
297
|
+
------------------------------------------------------------------------
|
298
|
+
r31 | deveiant | 2003-09-11 00:50:13 -0400 (Thu, 11 Sep 2003) | 2 lines
|
299
|
+
|
300
|
+
- Brought up-to-date with canonical source.
|
301
|
+
|
302
|
+
------------------------------------------------------------------------
|
303
|
+
r30 | deveiant | 2003-09-11 00:49:45 -0400 (Thu, 11 Sep 2003) | 2 lines
|
304
|
+
|
305
|
+
- Removed finished items.
|
306
|
+
|
307
|
+
------------------------------------------------------------------------
|
308
|
+
r29 | deveiant | 2003-09-11 00:48:46 -0400 (Thu, 11 Sep 2003) | 2 lines
|
309
|
+
|
310
|
+
- Beginnings of update for new release. Still needs more work before release.
|
311
|
+
|
312
|
+
------------------------------------------------------------------------
|
313
|
+
r28 | deveiant | 2003-09-11 00:48:06 -0400 (Thu, 11 Sep 2003) | 2 lines
|
314
|
+
|
315
|
+
- Added ChangeLog.
|
316
|
+
|
317
|
+
------------------------------------------------------------------------
|
318
|
+
r27 | deveiant | 2003-09-11 00:25:23 -0400 (Thu, 11 Sep 2003) | 2 lines
|
319
|
+
|
320
|
+
Initial checkin.
|
321
|
+
|
322
|
+
------------------------------------------------------------------------
|
323
|
+
r26 | deveiant | 2003-09-09 23:48:46 -0400 (Tue, 09 Sep 2003) | 2 lines
|
324
|
+
|
325
|
+
Initial checkin.
|
326
|
+
|
327
|
+
------------------------------------------------------------------------
|
328
|
+
r25 | stillflame | 2003-09-09 15:29:15 -0400 (Tue, 09 Sep 2003) | 2 lines
|
329
|
+
|
330
|
+
initial import
|
331
|
+
|
332
|
+
------------------------------------------------------------------------
|
333
|
+
r24 | deveiant | 2003-08-26 06:35:16 -0400 (Tue, 26 Aug 2003) | 2 lines
|
334
|
+
|
335
|
+
Initial checkin.
|
336
|
+
|
337
|
+
------------------------------------------------------------------------
|
338
|
+
r23 | deveiant | 2003-07-10 20:36:40 -0400 (Thu, 10 Jul 2003) | 2 lines
|
339
|
+
|
340
|
+
- Added a Range#step 1.6 compat function.
|
341
|
+
|
342
|
+
------------------------------------------------------------------------
|
343
|
+
r22 | deveiant | 2003-07-10 20:20:10 -0400 (Thu, 10 Jul 2003) | 2 lines
|
344
|
+
|
345
|
+
- 1.6 fixes.
|
346
|
+
|
347
|
+
------------------------------------------------------------------------
|
348
|
+
r21 | deveiant | 2003-07-10 20:13:54 -0400 (Thu, 10 Jul 2003) | 2 lines
|
349
|
+
|
350
|
+
- More 1.6ish fixes.
|
351
|
+
|
352
|
+
------------------------------------------------------------------------
|
353
|
+
r20 | deveiant | 2003-07-10 19:52:36 -0400 (Thu, 10 Jul 2003) | 2 lines
|
354
|
+
|
355
|
+
Made module_methods out of the backend functions to support including linguistic methods again.
|
356
|
+
|
357
|
+
------------------------------------------------------------------------
|
358
|
+
r19 | deveiant | 2003-07-10 19:45:26 -0400 (Thu, 10 Jul 2003) | 2 lines
|
359
|
+
|
360
|
+
- Fixed use of Hash#merge! (1.8 feature)
|
361
|
+
|
362
|
+
------------------------------------------------------------------------
|
363
|
+
r18 | deveiant | 2003-07-10 19:38:24 -0400 (Thu, 10 Jul 2003) | 2 lines
|
364
|
+
|
365
|
+
- Fixed usage of Hash#merge (a 1.8 feature).
|
366
|
+
|
367
|
+
------------------------------------------------------------------------
|
368
|
+
r17 | deveiant | 2003-07-09 20:00:00 -0400 (Wed, 09 Jul 2003) | 2 lines
|
369
|
+
|
370
|
+
- Removed unneccessary require of test/unit/mock.
|
371
|
+
|
372
|
+
------------------------------------------------------------------------
|
373
|
+
r16 | deveiant | 2003-07-09 19:24:42 -0400 (Wed, 09 Jul 2003) | 2 lines
|
374
|
+
|
375
|
+
Initial checkin.
|
376
|
+
|
377
|
+
------------------------------------------------------------------------
|
378
|
+
r15 | deveiant | 2003-07-09 17:45:36 -0400 (Wed, 09 Jul 2003) | 2 lines
|
379
|
+
|
380
|
+
Initial checkin.
|
381
|
+
|
382
|
+
------------------------------------------------------------------------
|
383
|
+
r14 | deveiant | 2003-07-09 16:39:59 -0400 (Wed, 09 Jul 2003) | 2 lines
|
384
|
+
|
385
|
+
- Explicitly listed linguistics.rb so it gets documented first.
|
386
|
+
|
387
|
+
------------------------------------------------------------------------
|
388
|
+
r13 | deveiant | 2003-07-09 16:39:25 -0400 (Wed, 09 Jul 2003) | 2 lines
|
389
|
+
|
390
|
+
- Commented out rdoc-selection code, as it doesn't work.
|
391
|
+
|
392
|
+
------------------------------------------------------------------------
|
393
|
+
r12 | deveiant | 2003-07-09 16:38:14 -0400 (Wed, 09 Jul 2003) | 2 lines
|
394
|
+
|
395
|
+
- Fleshed out instructions for use and addition.
|
396
|
+
|
397
|
+
------------------------------------------------------------------------
|
398
|
+
r11 | deveiant | 2003-07-09 16:37:06 -0400 (Wed, 09 Jul 2003) | 2 lines
|
399
|
+
|
400
|
+
- RDoc fixes
|
401
|
+
|
402
|
+
------------------------------------------------------------------------
|
403
|
+
r10 | deveiant | 2003-07-09 16:35:29 -0400 (Wed, 09 Jul 2003) | 2 lines
|
404
|
+
|
405
|
+
- Made some RDoc fixes
|
406
|
+
|
407
|
+
------------------------------------------------------------------------
|
408
|
+
r9 | deveiant | 2003-07-09 15:30:42 -0400 (Wed, 09 Jul 2003) | 4 lines
|
409
|
+
|
410
|
+
- Added array-wrapping to allow single classes in the :classes config argument.
|
411
|
+
|
412
|
+
- Wrapped the code that adds the inflector method in a test for the method's existance to avoid constantly redefining it for classes which already have it.
|
413
|
+
|
414
|
+
------------------------------------------------------------------------
|
415
|
+
r8 | deveiant | 2003-07-09 15:16:21 -0400 (Wed, 09 Jul 2003) | 2 lines
|
416
|
+
|
417
|
+
- Moved Array extension to the bottom of the file to avoid confusion, and turned on :nodoc: for it.
|
418
|
+
|
419
|
+
------------------------------------------------------------------------
|
420
|
+
r7 | deveiant | 2003-07-09 14:24:13 -0400 (Wed, 09 Jul 2003) | 2 lines
|
421
|
+
|
422
|
+
- Moved into the en/ directory to separate language-specific tests from general tests.
|
423
|
+
|
424
|
+
------------------------------------------------------------------------
|
425
|
+
r6 | deveiant | 2003-07-09 12:15:20 -0400 (Wed, 09 Jul 2003) | 2 lines
|
426
|
+
|
427
|
+
Fixed project-grokking expression
|
428
|
+
|
429
|
+
------------------------------------------------------------------------
|
430
|
+
r5 | deveiant | 2003-07-09 12:13:52 -0400 (Wed, 09 Jul 2003) | 2 lines
|
431
|
+
|
432
|
+
Initial checkin.
|
433
|
+
|
434
|
+
------------------------------------------------------------------------
|
435
|
+
r4 | deveiant | 2003-07-09 11:54:43 -0400 (Wed, 09 Jul 2003) | 2 lines
|
436
|
+
|
437
|
+
Initial checkin
|
438
|
+
|
439
|
+
------------------------------------------------------------------------
|
440
|
+
r1 | deveiant | 2003-07-09 10:49:57 -0400 (Wed, 09 Jul 2003) | 2 lines
|
441
|
+
|
442
|
+
Initial revision
|
443
|
+
|
444
|
+
------------------------------------------------------------------------
|
data/MANIFEST
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Artistic
|
2
|
+
experiments/randobjlist.rb
|
3
|
+
install.rb
|
4
|
+
lib/linguistics/en.rb
|
5
|
+
lib/linguistics/iso639.rb
|
6
|
+
lib/linguistics.rb
|
7
|
+
lib/linguistics/**/*.rb
|
8
|
+
MANIFEST
|
9
|
+
README
|
10
|
+
README.english
|
11
|
+
redist/*.rb
|
12
|
+
test.rb
|
13
|
+
tests/en/conjunction.tests.rb
|
14
|
+
tests/en/inflect.tests.rb
|
15
|
+
tests/lingtestcase.rb
|
16
|
+
tests/use.tests.rb
|
17
|
+
TODO
|
18
|
+
utils.rb
|
19
|
+
ChangeLog
|