io-reactor 0.05 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +482 -217
- data/LICENSE +27 -0
- data/README +1 -1
- data/Rakefile +257 -0
- data/examples/chatserver.rb +1 -1
- data/examples/simple.rb +59 -0
- data/examples/simpleserver.rb +44 -0
- data/lib/io/reactor.rb +114 -87
- data/rake/dependencies.rb +62 -0
- data/rake/helpers.rb +384 -0
- data/rake/manual.rb +384 -0
- data/rake/packaging.rb +112 -0
- data/rake/publishing.rb +302 -0
- data/rake/rdoc.rb +31 -0
- data/rake/style.rb +62 -0
- data/rake/svn.rb +468 -0
- data/rake/testing.rb +191 -0
- data/rake/verifytask.rb +64 -0
- data/spec/io/reactor_spec.rb +269 -0
- metadata +71 -45
- data/CATALOG +0 -10
- data/install.rb +0 -85
- data/io-reactor.gemspec +0 -21
- data/makedocs.rb +0 -79
- data/test.rb +0 -212
- data/utils.rb +0 -484
data/ChangeLog
CHANGED
@@ -1,303 +1,568 @@
|
|
1
|
-
|
1
|
+
-- Tue, 19 Aug 2008 23:43:09 -0000 by deveiant (r87) -----
|
2
|
+
Changed: docs
|
2
3
|
|
3
|
-
|
4
|
+
Remove Darkfish external.
|
4
5
|
|
5
|
-
- Changed to IO::Reactor.
|
6
|
-
|
7
|
-
2003-07-21 08:21 Michael Granger <ged@FaerieMUD.org>
|
8
6
|
|
9
|
-
|
7
|
+
-- Tue, 19 Aug 2008 23:41:58 -0000 by deveiant (r86) -----
|
8
|
+
Changed: lib/io/reactor.rb
|
9
|
+
/trunk
|
10
|
+
ChangeLog
|
11
|
+
Deleted: coverage.info
|
10
12
|
|
11
|
-
|
12
|
-
|
13
|
-
2003-07-21 00:55 Michael Granger <ged@FaerieMUD.org>
|
13
|
+
Updating VERSION for a new release.
|
14
14
|
|
15
|
-
* test.rb (1.7), utils.rb (1.4), examples/chatserver.rb (1.3),
|
16
|
-
lib/io/reactor.rb (1.11), CATALOG (1.2) (utags: RELEASE_0_04):
|
17
15
|
|
18
|
-
|
19
|
-
|
20
|
-
|
16
|
+
-- Tue, 19 Aug 2008 20:30:57 -0000 by deveiant (r85) -----
|
17
|
+
Added: project.yml (new)
|
18
|
+
LICENSE (new)
|
19
|
+
Changed: README
|
20
|
+
/trunk
|
21
|
+
examples/simpleserver.rb
|
22
|
+
utils.rb
|
23
|
+
examples/simple.rb
|
24
|
+
spec/io/reactor_spec.rb (and 5 other/s)
|
25
|
+
Deleted: .gemspec
|
26
|
+
install.rb
|
27
|
+
CATALOG
|
28
|
+
misc
|
21
29
|
|
22
|
-
|
30
|
+
Moved project under my new build system.
|
23
31
|
|
24
|
-
- Removed for IO::Reactor, which no longer needs a C backend.
|
25
|
-
|
26
|
-
2003-05-08 16:49 Michael Granger <ged@FaerieMUD.org>
|
27
32
|
|
28
|
-
|
33
|
+
-- Mon, 14 Jan 2008 17:26:07 -0000 by deveiant (r84) -----
|
34
|
+
Added: misc/spec_verify_helpers.rb (new)
|
35
|
+
examples/simpleserver.rb (new)
|
36
|
+
spec/io (new)
|
37
|
+
misc/rake_helpers.rb (new)
|
38
|
+
examples/simple.rb (new)
|
39
|
+
spec/io/reactor_spec.rb (new) (and 7 other/s)
|
40
|
+
Changed: /trunk
|
41
|
+
utils.rb
|
42
|
+
lib/io/reactor.rb
|
43
|
+
ChangeLog
|
44
|
+
docs
|
45
|
+
Deleted: docs/CATALOG
|
46
|
+
makedist.rb
|
47
|
+
docs/.cvsignore
|
48
|
+
MANIFEST
|
49
|
+
docs/makedocs.rb
|
50
|
+
test.rb (and 1 other/s)
|
29
51
|
|
30
|
-
|
31
|
-
|
32
|
-
|
52
|
+
* Updated project to Rakefile+RSpec style.
|
53
|
+
* Applied bugfix for auto-vivification bug and another related edgecase (fixes #3)
|
54
|
+
* Bumped version to 1.0.0.
|
33
55
|
|
34
|
-
* test.rb (1.6):
|
35
56
|
|
36
|
-
|
37
|
-
|
38
|
-
2003-04-20 22:34 Michael Granger <ged@FaerieMUD.org>
|
57
|
+
-- Tue, 16 Nov 2004 03:34:02 -0000 by ged (r83) -----
|
58
|
+
Changed: /trunk
|
39
59
|
|
40
|
-
|
60
|
+
-- Updated project-version prop to 0.0.6
|
41
61
|
|
42
|
-
Added code for simulating poll(2) with rb_thread_select() for machines without a native poll(). Based on code for Freehaven by
|
43
|
-
Nick Mathewson <nickm@freehaven.net>.
|
44
|
-
|
45
|
-
2003-04-20 22:32 Michael Granger <ged@FaerieMUD.org>
|
46
62
|
|
47
|
-
|
63
|
+
-- Tue, 16 Nov 2004 03:31:51 -0000 by ged (r81) -----
|
64
|
+
Changed: /trunk
|
48
65
|
|
49
|
-
|
50
|
-
|
51
|
-
2002-10-20 21:47 Michael Granger <ged@FaerieMUD.org>
|
66
|
+
-- Added project metadata properties to base dir.
|
52
67
|
|
53
|
-
* lib/: poll.rb (1.10), io/reactor.rb (1.10) (utags: RELEASE_0_03):
|
54
68
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
2002-09-18 06:33 Michael Granger <ged@FaerieMUD.org>
|
69
|
+
-- Tue, 16 Nov 2004 03:29:58 -0000 by ged (r80) -----
|
70
|
+
Changed: utils.rb
|
71
|
+
makedist.rb
|
72
|
+
Deleted: makesitedocs.rb
|
73
|
+
makedocs.rb
|
61
74
|
|
62
|
-
|
75
|
+
-- Updated dist scripts from project-utils.
|
76
|
+
-- Removed unneeded docs-generation scripts.
|
63
77
|
|
64
|
-
- Removed dependence on as-yet-undistributed xhtml RDoc template.
|
65
|
-
|
66
|
-
2002-09-06 10:52 Michael Granger <ged@FaerieMUD.org>
|
67
78
|
|
68
|
-
|
79
|
+
-- Tue, 16 Nov 2004 03:28:58 -0000 by ged (r79) -----
|
80
|
+
Added: .gemspec (new)
|
69
81
|
|
70
|
-
|
71
|
-
|
72
|
-
- Added more-informative debugging.
|
73
|
-
|
74
|
-
2002-07-20 10:07 Michael Granger <ged@FaerieMUD.org>
|
82
|
+
-- Added gemspec by Chad Fowler.
|
75
83
|
|
76
|
-
* lib/: poll.rb (1.9), io/reactor.rb (1.9) (utags: RELEASE_0_02):
|
77
84
|
|
78
|
-
|
79
|
-
|
80
|
-
- New method: #callback().
|
81
|
-
|
82
|
-
- New method: #args().
|
83
|
-
|
84
|
-
- Implemented the #register() method in terms of the other setter methods to
|
85
|
-
consolidate the maintenance of internal data structures.
|
86
|
-
|
87
|
-
- Added missing callback *args to #setCallback().
|
88
|
-
|
89
|
-
- Cleared up documentation for #register.
|
90
|
-
|
91
|
-
2002-07-20 10:03 Michael Granger <ged@FaerieMUD.org>
|
85
|
+
-- Tue, 16 Nov 2004 03:28:26 -0000 by ged (r78) -----
|
86
|
+
Changed: docs/makedocs.rb
|
92
87
|
|
93
|
-
|
88
|
+
-- CSS2 template is now RDoc's default.
|
94
89
|
|
95
|
-
- Changed name of user class to 'User' to avoid confusion about its role in the
|
96
|
-
server.
|
97
|
-
|
98
|
-
2002-07-20 10:01 Michael Granger <ged@FaerieMUD.org>
|
99
90
|
|
100
|
-
|
91
|
+
-- Sun, 14 Nov 2004 22:56:42 -0000 by ged (r77) -----
|
92
|
+
Deleted: .cvsignore
|
101
93
|
|
102
|
-
|
103
|
-
|
104
|
-
2002-07-20 10:01 Michael Granger <ged@FaerieMUD.org>
|
94
|
+
-- remove extraneous .cvsignore file
|
105
95
|
|
106
|
-
* makedocs.rb (1.2):
|
107
96
|
|
108
|
-
|
109
|
-
|
110
|
-
2002-07-19 10:29 Michael Granger <ged@FaerieMUD.org>
|
97
|
+
-- Sat, 13 Dec 2003 22:11:42 -0000 by deveiant (r76) -----
|
98
|
+
Changed: lib/io/reactor.rb
|
111
99
|
|
112
|
-
|
100
|
+
- Removed duplicate #registered? method. Spotted by Daniel Berger <djberge at
|
101
|
+
qwest dot com>.
|
113
102
|
|
114
|
-
- Fixed a funny typo.
|
115
|
-
|
116
|
-
2002-07-18 21:58 Michael Granger <ged@FaerieMUD.org>
|
117
103
|
|
118
|
-
|
104
|
+
-- Thu, 07 Aug 2003 02:19:38 -0000 by deveiant (r75) -----
|
105
|
+
Changed: test.rb
|
119
106
|
|
120
|
-
|
121
|
-
|
122
|
-
2002-07-18 21:58 Michael Granger <ged@FaerieMUD.org>
|
107
|
+
- Added workarounds for Win32. Thanks to Daniel Berger.
|
123
108
|
|
124
|
-
* utils.rb (1.3, RELEASE_0_03, RELEASE_0_02):
|
125
109
|
|
126
|
-
|
127
|
-
|
128
|
-
- Added case to read the documentation CATALOG in the base directory if it's not
|
129
|
-
in the docs/ directory.
|
130
|
-
|
131
|
-
2002-07-18 21:55 Michael Granger <ged@FaerieMUD.org>
|
110
|
+
-- Mon, 04 Aug 2003 23:58:10 -0000 by deveiant (r73) -----
|
111
|
+
Changed: MANIFEST
|
132
112
|
|
133
|
-
|
113
|
+
- Added install.rb file.
|
134
114
|
|
135
|
-
- Merged some of the features from the MUES doc-gen script.
|
136
|
-
|
137
|
-
2002-07-18 21:52 Michael Granger <ged@FaerieMUD.org>
|
138
115
|
|
139
|
-
|
116
|
+
-- Mon, 04 Aug 2003 23:57:45 -0000 by deveiant (r72) -----
|
117
|
+
Changed: CATALOG
|
140
118
|
|
141
|
-
|
142
|
-
|
143
|
-
2002-07-18 21:52 Michael Granger <ged@FaerieMUD.org>
|
119
|
+
- Added meta-data to header for use in the frontend to RDoc.
|
144
120
|
|
145
|
-
* test.rb (1.4):
|
146
121
|
|
147
|
-
|
148
|
-
|
149
|
-
2002-07-18 09:42 Michael Granger <ged@FaerieMUD.org>
|
122
|
+
-- Mon, 04 Aug 2003 23:57:07 -0000 by deveiant (r71) -----
|
123
|
+
Changed: test.rb
|
150
124
|
|
151
|
-
|
125
|
+
- Renumbered to ease addition of new tests
|
126
|
+
- Added tests for argument lists.
|
152
127
|
|
153
|
-
- Added a debugMsg function.
|
154
|
-
|
155
|
-
- Qualified all functions as module_functions.
|
156
|
-
|
157
|
-
2002-07-18 09:40 Michael Granger <ged@FaerieMUD.org>
|
158
128
|
|
159
|
-
|
129
|
+
-- Mon, 04 Aug 2003 23:56:14 -0000 by deveiant (r70) -----
|
130
|
+
Changed: lib/io/reactor.rb
|
160
131
|
|
161
|
-
|
162
|
-
|
163
|
-
- Added clarification and additional documentation for some methods.
|
164
|
-
|
165
|
-
2002-07-18 09:35 Michael Granger <ged@FaerieMUD.org>
|
132
|
+
- De-tabbed the documentation in the header.
|
133
|
+
- Added argument list given to handlers back in.
|
166
134
|
|
167
|
-
* README (1.4, RELEASE_0_03, RELEASE_0_02):
|
168
135
|
|
169
|
-
|
170
|
-
|
171
|
-
2002-04-18 16:53 Michael Granger <ged@FaerieMUD.org>
|
136
|
+
-- Mon, 04 Aug 2003 23:53:32 -0000 by deveiant (r69) -----
|
137
|
+
Changed: examples/chatserver.rb
|
172
138
|
|
173
|
-
|
139
|
+
- Moved classes into the Example namespace to distinguish them in the docs from
|
140
|
+
the real classes.
|
174
141
|
|
175
|
-
- Corrected a bug in the header =:)
|
176
|
-
|
177
|
-
2002-04-18 12:01 Michael Granger <ged@FaerieMUD.org>
|
178
142
|
|
179
|
-
|
180
|
-
|
143
|
+
-- Mon, 04 Aug 2003 23:52:33 -0000 by deveiant (r68) -----
|
144
|
+
Added: docs/makedocs.rb (new)
|
145
|
+
docs/CATALOG (new)
|
146
|
+
docs/.cvsignore (new)
|
147
|
+
docs (new)
|
181
148
|
|
182
|
-
|
183
|
-
|
184
|
-
2002-04-18 11:24 Michael Granger <ged@FaerieMUD.org>
|
149
|
+
Initial checkin.
|
185
150
|
|
186
|
-
* extconf.rb (1.3, RELEASE_0_01):
|
187
151
|
|
188
|
-
|
189
|
-
|
190
|
-
2002-04-18 10:23 Michael Granger <ged@FaerieMUD.org>
|
152
|
+
-- Mon, 04 Aug 2003 23:52:07 -0000 by deveiant (r67) -----
|
153
|
+
Changed: utils.rb
|
191
154
|
|
192
|
-
|
155
|
+
- Propagated fixes/new features from Arrow.
|
193
156
|
|
194
|
-
Initial commit
|
195
|
-
|
196
|
-
2002-04-18 10:23 Michael Granger <ged@FaerieMUD.org>
|
197
157
|
|
198
|
-
|
158
|
+
-- Tue, 22 Jul 2003 16:31:17 -0000 by deveiant (r65) -----
|
159
|
+
Changed: lib/io/reactor.rb
|
199
160
|
|
200
|
-
|
201
|
-
|
202
|
-
- Changed the name of the second arg to _poll() to handleArray, as it wasn't
|
203
|
-
really an array of file descriptors.
|
204
|
-
|
205
|
-
2002-04-18 08:44 Michael Granger <ged@FaerieMUD.org>
|
161
|
+
- Fixed documentation for the pendingEvents attribute.
|
206
162
|
|
207
|
-
* test.rb (1.3, RELEASE_0_01):
|
208
163
|
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
- Removed a require left over from the failed tempfile experiment.
|
213
|
-
|
214
|
-
2002-04-18 08:43 Michael Granger <ged@FaerieMUD.org>
|
164
|
+
-- Tue, 22 Jul 2003 16:17:19 -0000 by deveiant (r64) -----
|
165
|
+
Changed: ChangeLog
|
215
166
|
|
216
|
-
|
167
|
+
Updated
|
217
168
|
|
218
|
-
- Moved the ext/extconf.rb stuff into this one because the ext directory is
|
219
|
-
going away.
|
220
|
-
|
221
|
-
2002-04-18 08:42 Michael Granger <ged@FaerieMUD.org>
|
222
169
|
|
223
|
-
|
170
|
+
-- Mon, 21 Jul 2003 15:04:50 -0000 by deveiant (r63) -----
|
171
|
+
Changed: README
|
224
172
|
|
225
|
-
|
226
|
-
|
227
|
-
- Added requirements section
|
228
|
-
|
229
|
-
- Modified installation section to use 'site-install' instead of 'install', and
|
230
|
-
took stuff out that would have been redundant with the requires section.
|
231
|
-
|
232
|
-
2002-04-17 15:34 Michael Granger <ged@FaerieMUD.org>
|
173
|
+
- Changed to IO::Reactor.
|
233
174
|
|
234
|
-
* lib/: poll.rb (1.5), io/reactor.rb (1.5) (utags: RELEASE_0_01):
|
235
175
|
|
236
|
-
|
237
|
-
|
238
|
-
2002-04-17 15:20 Michael Granger <ged@FaerieMUD.org>
|
176
|
+
-- Mon, 21 Jul 2003 14:21:30 -0000 by deveiant (r62) -----
|
177
|
+
Added: install.rb (new)
|
239
178
|
|
240
|
-
|
179
|
+
Initial checkin.
|
241
180
|
|
242
|
-
- Separated abstract from header.
|
243
|
-
|
244
|
-
2002-04-17 15:18 Michael Granger <ged@FaerieMUD.org>
|
245
181
|
|
246
|
-
|
182
|
+
-- Mon, 21 Jul 2003 07:01:57 -0000 by deveiant (r61) -----
|
183
|
+
Changed: MANIFEST
|
184
|
+
CATALOG
|
247
185
|
|
248
|
-
|
249
|
-
|
250
|
-
2002-04-17 15:14 Michael Granger <ged@FaerieMUD.org>
|
186
|
+
- Refactored into IO::Reactor from Ruby-Poll.
|
251
187
|
|
252
|
-
* README (1.1):
|
253
188
|
|
254
|
-
|
255
|
-
|
256
|
-
|
189
|
+
-- Mon, 21 Jul 2003 06:56:06 -0000 by deveiant (r60) -----
|
190
|
+
Deleted: lib/poll.rb
|
191
|
+
poll.c
|
192
|
+
extconf.rb
|
257
193
|
|
258
|
-
|
194
|
+
- Removed for IO::Reactor, which no longer needs a C backend.
|
259
195
|
|
260
|
-
- Fixed documentation for the EventMask bitwise operators.
|
261
|
-
|
262
|
-
2002-04-17 06:48 Michael Granger <ged@FaerieMUD.org>
|
263
196
|
|
264
|
-
|
197
|
+
-- Mon, 21 Jul 2003 06:55:26 -0000 by deveiant (r59) -----
|
198
|
+
Changed: lib/io/reactor.rb
|
199
|
+
test.rb
|
200
|
+
utils.rb
|
201
|
+
examples/chatserver.rb
|
265
202
|
|
266
|
-
|
267
|
-
|
268
|
-
2002-04-17 06:47 Michael Granger <ged@FaerieMUD.org>
|
203
|
+
- Refactored into IO::Reactor from Ruby-Poll.
|
269
204
|
|
270
|
-
* poll.c (1.2):
|
271
205
|
|
272
|
-
|
273
|
-
|
274
|
-
- Added _GNU_SOURCE define to catch the additional poll.h constants under Linux
|
275
|
-
|
276
|
-
- Changed _poll to a protected method.
|
277
|
-
|
278
|
-
2002-04-17 06:46 Michael Granger <ged@FaerieMUD.org>
|
206
|
+
-- Thu, 08 May 2003 22:49:38 -0000 by deveiant (r58) -----
|
207
|
+
Changed: makesitedocs.rb
|
279
208
|
|
280
|
-
|
209
|
+
makesitedocs.rb
|
281
210
|
|
282
|
-
- Added lots of stuff, redesigned to match the new API
|
283
|
-
|
284
|
-
2002-04-17 06:45 Michael Granger <ged@FaerieMUD.org>
|
285
211
|
|
286
|
-
|
212
|
+
-- Mon, 21 Apr 2003 04:37:01 -0000 by deveiant (r57) -----
|
213
|
+
Changed: test.rb
|
287
214
|
|
288
|
-
|
289
|
-
|
290
|
-
2002-04-16 04:47 Michael Granger <ged@FaerieMUD.org>
|
215
|
+
Added workaround for recent versions of Test::Unit's API changes.
|
291
216
|
|
292
|
-
* extconf.rb (1.1), poll.c (1.1), test.rb (1.1), lib/poll.rb (1.1),
|
293
|
-
lib/io/reactor.rb (1.1):
|
294
217
|
|
295
|
-
|
296
|
-
|
297
|
-
|
218
|
+
-- Mon, 21 Apr 2003 04:34:59 -0000 by deveiant (r56) -----
|
219
|
+
Changed: poll.c
|
220
|
+
|
221
|
+
Added code for simulating poll(2) with rb_thread_select() for machines without a native poll(). Based on code for Freehaven by
|
222
|
+
Nick Mathewson <nickm@freehaven.net>.
|
223
|
+
|
224
|
+
|
225
|
+
-- Mon, 21 Apr 2003 04:32:58 -0000 by deveiant (r55) -----
|
226
|
+
Changed: extconf.rb
|
227
|
+
|
228
|
+
Added fake poll code to allow machines without a poll(2) to use the library. This also might become the primary method of polling, sadly, as Ruby doesn't tolerate other async IO methods very well due to its use of select() for its threading.
|
229
|
+
|
230
|
+
|
231
|
+
-- Mon, 21 Oct 2002 03:47:01 -0000 by deveiant (r53) -----
|
232
|
+
Changed: lib/io/reactor.rb
|
233
|
+
lib/poll.rb
|
234
|
+
|
235
|
+
- Got rid of a type-checking statement, as it didn't account for using an IO
|
236
|
+
inside a wrappered or delegated object.
|
237
|
+
- Fixed use of deprecated 'type' method.
|
238
|
+
|
239
|
+
|
240
|
+
-- Wed, 18 Sep 2002 12:40:33 -0000 by deveiant (r51) -----
|
241
|
+
Changed: .cvsignore
|
242
|
+
/trunk
|
243
|
+
|
244
|
+
- Added Makefile and mkmf.log.
|
245
|
+
|
246
|
+
|
247
|
+
-- Wed, 18 Sep 2002 12:35:10 -0000 by deveiant (r50) -----
|
248
|
+
Changed: ChangeLog
|
249
|
+
|
250
|
+
Updated.
|
251
|
+
|
252
|
+
|
253
|
+
-- Wed, 18 Sep 2002 12:33:35 -0000 by deveiant (r49) -----
|
254
|
+
Changed: makedocs.rb
|
255
|
+
|
256
|
+
- Removed dependence on as-yet-undistributed xhtml RDoc template.
|
257
|
+
|
258
|
+
|
259
|
+
-- Fri, 06 Sep 2002 17:02:29 -0000 by deveiant (r48) -----
|
260
|
+
Changed: MANIFEST
|
261
|
+
|
262
|
+
- Trimmed the docs/* directory.
|
263
|
+
- Made the examples explicit for now, as I don't want to include unfinished
|
264
|
+
examples.
|
265
|
+
|
266
|
+
|
267
|
+
-- Fri, 06 Sep 2002 16:52:32 -0000 by deveiant (r47) -----
|
268
|
+
Changed: poll.c
|
269
|
+
|
270
|
+
- Added interrupt-handling to the _poll call.
|
271
|
+
- Added more-informative debugging.
|
272
|
+
|
273
|
+
|
274
|
+
-- Sat, 20 Jul 2002 16:07:01 -0000 by deveiant (r46) -----
|
275
|
+
Changed: lib/io/reactor.rb
|
276
|
+
lib/poll.rb
|
277
|
+
|
278
|
+
- New method: #setMask().
|
279
|
+
- New method: #callback().
|
280
|
+
- New method: #args().
|
281
|
+
- Implemented the #register() method in terms of the other setter methods to
|
282
|
+
consolidate the maintenance of internal data structures.
|
283
|
+
- Added missing callback *args to #setCallback().
|
284
|
+
- Cleared up documentation for #register.
|
285
|
+
|
286
|
+
|
287
|
+
-- Sat, 20 Jul 2002 16:03:01 -0000 by deveiant (r45) -----
|
288
|
+
Changed: examples/chatserver.rb
|
289
|
+
|
290
|
+
- Changed name of user class to 'User' to avoid confusion about its role in the
|
291
|
+
server.
|
292
|
+
|
293
|
+
|
294
|
+
-- Sat, 20 Jul 2002 16:01:37 -0000 by deveiant (r44) -----
|
295
|
+
Changed: test.rb
|
296
|
+
|
297
|
+
- Added test for the #callback method.
|
298
|
+
|
299
|
+
|
300
|
+
-- Sat, 20 Jul 2002 16:01:16 -0000 by deveiant (r43) -----
|
301
|
+
Changed: makedocs.rb
|
302
|
+
|
303
|
+
- Added template argument to make it use the xhtml template.
|
304
|
+
|
305
|
+
|
306
|
+
-- Fri, 19 Jul 2002 16:29:20 -0000 by deveiant (r42) -----
|
307
|
+
Changed: lib/io/reactor.rb
|
308
|
+
lib/poll.rb
|
309
|
+
|
310
|
+
- Fixed a funny typo.
|
311
|
+
|
312
|
+
|
313
|
+
-- Fri, 19 Jul 2002 04:12:32 -0000 by deveiant (r41) -----
|
314
|
+
Changed: MANIFEST
|
315
|
+
|
316
|
+
- Moved CATALOG to the bottom, as the first entry is the one that the version is
|
317
|
+
extracted from.
|
318
|
+
|
319
|
+
|
320
|
+
-- Fri, 19 Jul 2002 04:00:25 -0000 by deveiant (r40) -----
|
321
|
+
Changed: MANIFEST
|
322
|
+
|
323
|
+
- Added the documentation CATALOG file.
|
324
|
+
|
325
|
+
|
326
|
+
-- Fri, 19 Jul 2002 03:58:56 -0000 by deveiant (r39) -----
|
327
|
+
Added: CATALOG (new)
|
328
|
+
|
329
|
+
Initial commit.
|
330
|
+
|
331
|
+
|
332
|
+
-- Fri, 19 Jul 2002 03:58:24 -0000 by deveiant (r38) -----
|
333
|
+
Changed: utils.rb
|
334
|
+
|
335
|
+
- Fixed typo in vetManifest()
|
336
|
+
- Added case to read the documentation CATALOG in the base directory if it's not
|
337
|
+
in the docs/ directory.
|
338
|
+
|
339
|
+
|
340
|
+
-- Fri, 19 Jul 2002 03:55:15 -0000 by deveiant (r37) -----
|
341
|
+
Changed: makesitedocs.rb
|
342
|
+
|
343
|
+
- Merged some of the features from the MUES doc-gen script.
|
344
|
+
|
345
|
+
|
346
|
+
-- Fri, 19 Jul 2002 03:52:47 -0000 by deveiant (r36) -----
|
347
|
+
Changed: lib/io/reactor.rb
|
348
|
+
lib/poll.rb
|
349
|
+
|
350
|
+
- Added callback arguments to the register() method.
|
351
|
+
|
352
|
+
|
353
|
+
-- Fri, 19 Jul 2002 03:52:09 -0000 by deveiant (r35) -----
|
354
|
+
Changed: test.rb
|
355
|
+
|
356
|
+
- Added test for new "with-args" register() method call.
|
357
|
+
|
358
|
+
|
359
|
+
-- Thu, 18 Jul 2002 15:42:16 -0000 by deveiant (r34) -----
|
360
|
+
Changed: utils.rb
|
361
|
+
|
362
|
+
- Added a debugMsg function.
|
363
|
+
- Qualified all functions as module_functions.
|
364
|
+
|
365
|
+
|
366
|
+
-- Thu, 18 Jul 2002 15:40:39 -0000 by deveiant (r33) -----
|
367
|
+
Changed: lib/io/reactor.rb
|
368
|
+
lib/poll.rb
|
369
|
+
|
370
|
+
- Fixed some typos
|
371
|
+
- Added clarification and additional documentation for some methods.
|
372
|
+
|
373
|
+
|
374
|
+
-- Thu, 18 Jul 2002 15:35:44 -0000 by deveiant (r32) -----
|
375
|
+
Changed: README
|
376
|
+
|
377
|
+
- Fixed a typo.
|
378
|
+
|
379
|
+
|
380
|
+
-- Thu, 18 Apr 2002 22:53:02 -0000 by deveiant (r31) -----
|
381
|
+
Changed: extconf.rb
|
382
|
+
|
383
|
+
- Corrected a bug in the header =:)
|
384
|
+
|
385
|
+
|
386
|
+
-- Thu, 18 Apr 2002 18:21:28 -0000 by deveiant (r30) -----
|
387
|
+
Changed: .cvsignore
|
388
|
+
/trunk
|
389
|
+
|
390
|
+
Added docs directory
|
391
|
+
|
392
|
+
|
393
|
+
-- Thu, 18 Apr 2002 18:09:07 -0000 by deveiant (r29) -----
|
394
|
+
Added: .cvsignore (new)
|
395
|
+
Changed: /trunk
|
396
|
+
|
397
|
+
Initial commit
|
398
|
+
|
399
|
+
|
400
|
+
-- Thu, 18 Apr 2002 18:04:59 -0000 by deveiant (r28) -----
|
401
|
+
Changed: MANIFEST
|
402
|
+
|
403
|
+
- Added makedocs.rb
|
404
|
+
|
405
|
+
|
406
|
+
-- Thu, 18 Apr 2002 18:01:03 -0000 by deveiant (r26) -----
|
407
|
+
Added: makesitedocs.rb (new)
|
408
|
+
utils.rb (new)
|
409
|
+
makedist.rb (new)
|
410
|
+
|
411
|
+
Initial commit
|
412
|
+
|
413
|
+
|
414
|
+
-- Thu, 18 Apr 2002 17:24:37 -0000 by deveiant (r25) -----
|
415
|
+
Changed: extconf.rb
|
416
|
+
|
417
|
+
- Corrected path to the docs-generation script.
|
418
|
+
|
419
|
+
|
420
|
+
-- Thu, 18 Apr 2002 17:24:16 -0000 by deveiant (r24) -----
|
421
|
+
Changed: MANIFEST
|
422
|
+
|
423
|
+
- Added examples directory.
|
424
|
+
|
425
|
+
|
426
|
+
-- Thu, 18 Apr 2002 17:23:39 -0000 by deveiant (r23) -----
|
427
|
+
Added: ChangeLog (new)
|
428
|
+
|
429
|
+
Initial commit.
|
430
|
+
|
431
|
+
|
432
|
+
-- Thu, 18 Apr 2002 16:26:02 -0000 by deveiant (r22) -----
|
433
|
+
Changed: MANIFEST
|
434
|
+
|
435
|
+
- Corrected poll.c path
|
436
|
+
|
437
|
+
|
438
|
+
-- Thu, 18 Apr 2002 16:23:40 -0000 by deveiant (r21) -----
|
439
|
+
Added: makedocs.rb (new)
|
440
|
+
|
441
|
+
Initial commit
|
442
|
+
|
443
|
+
|
444
|
+
-- Thu, 18 Apr 2002 16:23:16 -0000 by deveiant (r20) -----
|
445
|
+
Changed: poll.c
|
446
|
+
|
447
|
+
- Added some comments for RDoc, should it ever parse protected methods.
|
448
|
+
- Changed the name of the second arg to _poll() to handleArray, as it wasn't
|
449
|
+
really an array of file descriptors.
|
450
|
+
|
451
|
+
|
452
|
+
-- Thu, 18 Apr 2002 14:44:42 -0000 by deveiant (r19) -----
|
453
|
+
Changed: test.rb
|
454
|
+
|
455
|
+
- Removed the "ext" dir from the ones being added to the LOAD_PATH, as it's gone
|
456
|
+
away.
|
457
|
+
- Removed a require left over from the failed tempfile experiment.
|
458
|
+
|
459
|
+
|
460
|
+
-- Thu, 18 Apr 2002 14:43:10 -0000 by deveiant (r18) -----
|
461
|
+
Changed: extconf.rb
|
462
|
+
|
463
|
+
- Moved the ext/extconf.rb stuff into this one because the ext directory is
|
464
|
+
going away.
|
465
|
+
|
466
|
+
|
467
|
+
-- Thu, 18 Apr 2002 14:42:07 -0000 by deveiant (r17) -----
|
468
|
+
Changed: README
|
469
|
+
|
470
|
+
- Changed from alpha to beta
|
471
|
+
- Added requirements section
|
472
|
+
- Modified installation section to use 'site-install' instead of 'install', and
|
473
|
+
took stuff out that would have been redundant with the requires section.
|
474
|
+
|
475
|
+
|
476
|
+
-- Thu, 18 Apr 2002 14:39:14 -0000 by deveiant (r16) -----
|
477
|
+
Added: MANIFEST (new)
|
478
|
+
|
479
|
+
Initial commit
|
480
|
+
|
481
|
+
|
482
|
+
-- Thu, 18 Apr 2002 14:11:23 -0000 by deveiant (r15) -----
|
483
|
+
Deleted: Attic
|
484
|
+
|
485
|
+
Moved C source to base dir so extconf will work right.
|
486
|
+
|
487
|
+
|
488
|
+
-- Wed, 17 Apr 2002 21:34:44 -0000 by deveiant (r14) -----
|
489
|
+
Changed: lib/io/reactor.rb
|
490
|
+
lib/poll.rb
|
491
|
+
|
492
|
+
- Added :yeilds: RDoc construct to #poll.
|
493
|
+
|
494
|
+
|
495
|
+
-- Wed, 17 Apr 2002 21:20:32 -0000 by deveiant (r13) -----
|
496
|
+
Changed: README
|
497
|
+
|
498
|
+
- Separated abstract from header.
|
499
|
+
|
500
|
+
|
501
|
+
-- Wed, 17 Apr 2002 21:18:30 -0000 by deveiant (r12) -----
|
502
|
+
Changed: lib/io/reactor.rb
|
503
|
+
lib/poll.rb
|
504
|
+
|
505
|
+
- Clarified abstract.
|
506
|
+
|
507
|
+
|
508
|
+
-- Wed, 17 Apr 2002 21:14:02 -0000 by deveiant (r11) -----
|
509
|
+
Added: README (new)
|
510
|
+
|
511
|
+
Initial commit
|
512
|
+
|
513
|
+
|
514
|
+
-- Wed, 17 Apr 2002 13:03:45 -0000 by deveiant (r10) -----
|
515
|
+
Changed: lib/io/reactor.rb
|
516
|
+
lib/poll.rb
|
517
|
+
|
518
|
+
- Fixed documentation for the EventMask bitwise operators.
|
519
|
+
|
520
|
+
|
521
|
+
-- Wed, 17 Apr 2002 12:48:17 -0000 by deveiant (r9) -----
|
522
|
+
Changed: lib/io/reactor.rb
|
523
|
+
lib/poll.rb
|
524
|
+
|
525
|
+
- Re-implemented after the first one was wiped out by extconf.
|
526
|
+
|
527
|
+
|
528
|
+
-- Wed, 17 Apr 2002 12:47:29 -0000 by deveiant (r8) -----
|
529
|
+
Changed: poll.c
|
530
|
+
Attic/ext/poll.c
|
531
|
+
|
532
|
+
- Added shortcut constants
|
533
|
+
- Added _GNU_SOURCE define to catch the additional poll.h constants under Linux
|
534
|
+
- Changed _poll to a protected method.
|
535
|
+
|
536
|
+
|
537
|
+
-- Wed, 17 Apr 2002 12:46:08 -0000 by deveiant (r7) -----
|
538
|
+
Changed: test.rb
|
539
|
+
|
540
|
+
- Added lots of stuff, redesigned to match the new API
|
541
|
+
|
542
|
+
|
543
|
+
-- Wed, 17 Apr 2002 12:45:30 -0000 by deveiant (r6) -----
|
544
|
+
Added: examples (new)
|
545
|
+
examples/chatserver.rb (new)
|
546
|
+
|
547
|
+
Initial commit
|
548
|
+
|
549
|
+
|
550
|
+
-- Tue, 16 Apr 2002 10:47:21 -0000 by deveiant (r2) -----
|
551
|
+
Added: lib/io (new)
|
552
|
+
lib/io/reactor.rb (new)
|
553
|
+
lib/poll.rb (new)
|
554
|
+
test.rb (new)
|
555
|
+
Attic (new)
|
556
|
+
Attic/ext (new) (and 6 other/s)
|
557
|
+
|
558
|
+
Initial revision
|
559
|
+
|
560
|
+
|
561
|
+
-- Tue, 16 Apr 2002 10:47:21 -0000 by unknown (r1) -----
|
562
|
+
Added: /trunk (new)
|
563
|
+
/branches (new)
|
564
|
+
/tags (new)
|
565
|
+
|
566
|
+
New repository initialized by cvs2svn.
|
298
567
|
|
299
|
-
* extconf.rb (1.1.1.1), poll.c (1.1.1.1), test.rb (1.1.1.1),
|
300
|
-
lib/poll.rb (1.1.1.1), lib/io/reactor.rb (1.1.1.1) (utags: IMPORT):
|
301
568
|
|
302
|
-
Initial import
|
303
|
-
|