eventmachine 1.2.0.dev.2-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +105 -0
- data/GNU +281 -0
- data/LICENSE +60 -0
- data/README.md +108 -0
- data/docs/DocumentationGuidesIndex.md +27 -0
- data/docs/GettingStarted.md +521 -0
- data/docs/old/ChangeLog +211 -0
- data/docs/old/DEFERRABLES +246 -0
- data/docs/old/EPOLL +141 -0
- data/docs/old/INSTALL +13 -0
- data/docs/old/KEYBOARD +42 -0
- data/docs/old/LEGAL +25 -0
- data/docs/old/LIGHTWEIGHT_CONCURRENCY +130 -0
- data/docs/old/PURE_RUBY +75 -0
- data/docs/old/RELEASE_NOTES +94 -0
- data/docs/old/SMTP +4 -0
- data/docs/old/SPAWNED_PROCESSES +148 -0
- data/docs/old/TODO +8 -0
- data/examples/guides/getting_started/01_eventmachine_echo_server.rb +18 -0
- data/examples/guides/getting_started/02_eventmachine_echo_server_that_recognizes_exit_command.rb +22 -0
- data/examples/guides/getting_started/03_simple_chat_server.rb +149 -0
- data/examples/guides/getting_started/04_simple_chat_server_step_one.rb +27 -0
- data/examples/guides/getting_started/05_simple_chat_server_step_two.rb +43 -0
- data/examples/guides/getting_started/06_simple_chat_server_step_three.rb +98 -0
- data/examples/guides/getting_started/07_simple_chat_server_step_four.rb +121 -0
- data/examples/guides/getting_started/08_simple_chat_server_step_five.rb +141 -0
- data/examples/old/ex_channel.rb +43 -0
- data/examples/old/ex_queue.rb +2 -0
- data/examples/old/ex_tick_loop_array.rb +15 -0
- data/examples/old/ex_tick_loop_counter.rb +32 -0
- data/examples/old/helper.rb +2 -0
- data/ext/binder.cpp +124 -0
- data/ext/binder.h +46 -0
- data/ext/cmain.cpp +988 -0
- data/ext/ed.cpp +2111 -0
- data/ext/ed.h +442 -0
- data/ext/em.cpp +2379 -0
- data/ext/em.h +308 -0
- data/ext/eventmachine.h +143 -0
- data/ext/extconf.rb +270 -0
- data/ext/fastfilereader/extconf.rb +110 -0
- data/ext/fastfilereader/mapper.cpp +216 -0
- data/ext/fastfilereader/mapper.h +59 -0
- data/ext/fastfilereader/rubymain.cpp +127 -0
- data/ext/kb.cpp +79 -0
- data/ext/page.cpp +107 -0
- data/ext/page.h +51 -0
- data/ext/pipe.cpp +354 -0
- data/ext/project.h +176 -0
- data/ext/rubymain.cpp +1504 -0
- data/ext/ssl.cpp +615 -0
- data/ext/ssl.h +103 -0
- data/java/.classpath +8 -0
- data/java/.project +17 -0
- data/java/src/com/rubyeventmachine/EmReactor.java +591 -0
- data/java/src/com/rubyeventmachine/EmReactorException.java +40 -0
- data/java/src/com/rubyeventmachine/EventableChannel.java +72 -0
- data/java/src/com/rubyeventmachine/EventableDatagramChannel.java +201 -0
- data/java/src/com/rubyeventmachine/EventableSocketChannel.java +415 -0
- data/lib/2.0/fastfilereaderext.so +0 -0
- data/lib/2.0/rubyeventmachine.so +0 -0
- data/lib/2.1/fastfilereaderext.so +0 -0
- data/lib/2.1/rubyeventmachine.so +0 -0
- data/lib/2.2/fastfilereaderext.so +0 -0
- data/lib/2.2/rubyeventmachine.so +0 -0
- data/lib/2.3/fastfilereaderext.so +0 -0
- data/lib/2.3/rubyeventmachine.so +0 -0
- data/lib/em/buftok.rb +59 -0
- data/lib/em/callback.rb +58 -0
- data/lib/em/channel.rb +69 -0
- data/lib/em/completion.rb +304 -0
- data/lib/em/connection.rb +770 -0
- data/lib/em/deferrable.rb +210 -0
- data/lib/em/deferrable/pool.rb +2 -0
- data/lib/em/file_watch.rb +73 -0
- data/lib/em/future.rb +61 -0
- data/lib/em/iterator.rb +252 -0
- data/lib/em/messages.rb +66 -0
- data/lib/em/pool.rb +151 -0
- data/lib/em/process_watch.rb +45 -0
- data/lib/em/processes.rb +123 -0
- data/lib/em/protocols.rb +37 -0
- data/lib/em/protocols/header_and_content.rb +138 -0
- data/lib/em/protocols/httpclient.rb +299 -0
- data/lib/em/protocols/httpclient2.rb +600 -0
- data/lib/em/protocols/line_and_text.rb +125 -0
- data/lib/em/protocols/line_protocol.rb +29 -0
- data/lib/em/protocols/linetext2.rb +166 -0
- data/lib/em/protocols/memcache.rb +331 -0
- data/lib/em/protocols/object_protocol.rb +46 -0
- data/lib/em/protocols/postgres3.rb +246 -0
- data/lib/em/protocols/saslauth.rb +175 -0
- data/lib/em/protocols/smtpclient.rb +394 -0
- data/lib/em/protocols/smtpserver.rb +666 -0
- data/lib/em/protocols/socks4.rb +66 -0
- data/lib/em/protocols/stomp.rb +205 -0
- data/lib/em/protocols/tcptest.rb +54 -0
- data/lib/em/pure_ruby.rb +1022 -0
- data/lib/em/queue.rb +80 -0
- data/lib/em/resolver.rb +232 -0
- data/lib/em/spawnable.rb +84 -0
- data/lib/em/streamer.rb +118 -0
- data/lib/em/threaded_resource.rb +90 -0
- data/lib/em/tick_loop.rb +85 -0
- data/lib/em/timers.rb +61 -0
- data/lib/em/version.rb +3 -0
- data/lib/eventmachine.rb +1584 -0
- data/lib/fastfilereaderext.rb +2 -0
- data/lib/jeventmachine.rb +301 -0
- data/lib/rubyeventmachine.rb +2 -0
- data/rakelib/package.rake +120 -0
- data/rakelib/test.rake +8 -0
- data/tests/client.crt +31 -0
- data/tests/client.key +51 -0
- data/tests/dhparam.pem +13 -0
- data/tests/em_test_helper.rb +151 -0
- data/tests/test_attach.rb +151 -0
- data/tests/test_basic.rb +283 -0
- data/tests/test_channel.rb +75 -0
- data/tests/test_completion.rb +178 -0
- data/tests/test_connection_count.rb +54 -0
- data/tests/test_connection_write.rb +35 -0
- data/tests/test_defer.rb +35 -0
- data/tests/test_deferrable.rb +35 -0
- data/tests/test_epoll.rb +142 -0
- data/tests/test_error_handler.rb +38 -0
- data/tests/test_exc.rb +28 -0
- data/tests/test_file_watch.rb +66 -0
- data/tests/test_fork.rb +75 -0
- data/tests/test_futures.rb +170 -0
- data/tests/test_get_sock_opt.rb +37 -0
- data/tests/test_handler_check.rb +35 -0
- data/tests/test_hc.rb +155 -0
- data/tests/test_httpclient.rb +233 -0
- data/tests/test_httpclient2.rb +128 -0
- data/tests/test_idle_connection.rb +25 -0
- data/tests/test_inactivity_timeout.rb +54 -0
- data/tests/test_ipv4.rb +125 -0
- data/tests/test_ipv6.rb +131 -0
- data/tests/test_iterator.rb +115 -0
- data/tests/test_kb.rb +28 -0
- data/tests/test_line_protocol.rb +33 -0
- data/tests/test_ltp.rb +138 -0
- data/tests/test_ltp2.rb +308 -0
- data/tests/test_many_fds.rb +22 -0
- data/tests/test_next_tick.rb +104 -0
- data/tests/test_object_protocol.rb +36 -0
- data/tests/test_pause.rb +107 -0
- data/tests/test_pending_connect_timeout.rb +52 -0
- data/tests/test_pool.rb +196 -0
- data/tests/test_process_watch.rb +50 -0
- data/tests/test_processes.rb +128 -0
- data/tests/test_proxy_connection.rb +180 -0
- data/tests/test_pure.rb +88 -0
- data/tests/test_queue.rb +64 -0
- data/tests/test_resolver.rb +104 -0
- data/tests/test_running.rb +14 -0
- data/tests/test_sasl.rb +47 -0
- data/tests/test_send_file.rb +217 -0
- data/tests/test_servers.rb +33 -0
- data/tests/test_set_sock_opt.rb +39 -0
- data/tests/test_shutdown_hooks.rb +23 -0
- data/tests/test_smtpclient.rb +75 -0
- data/tests/test_smtpserver.rb +57 -0
- data/tests/test_spawn.rb +293 -0
- data/tests/test_ssl_args.rb +78 -0
- data/tests/test_ssl_dhparam.rb +83 -0
- data/tests/test_ssl_ecdh_curve.rb +79 -0
- data/tests/test_ssl_extensions.rb +49 -0
- data/tests/test_ssl_methods.rb +65 -0
- data/tests/test_ssl_protocols.rb +246 -0
- data/tests/test_ssl_verify.rb +126 -0
- data/tests/test_stomp.rb +37 -0
- data/tests/test_system.rb +46 -0
- data/tests/test_threaded_resource.rb +61 -0
- data/tests/test_tick_loop.rb +59 -0
- data/tests/test_timers.rb +123 -0
- data/tests/test_ud.rb +8 -0
- data/tests/test_unbind_reason.rb +52 -0
- metadata +381 -0
data/tests/test_ud.rb
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'em_test_helper'
|
2
|
+
require 'socket'
|
3
|
+
|
4
|
+
class TestUnbindReason < Test::Unit::TestCase
|
5
|
+
|
6
|
+
class StubConnection < EM::Connection
|
7
|
+
attr_reader :error
|
8
|
+
def unbind(reason = nil)
|
9
|
+
@error = reason
|
10
|
+
EM.stop
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_connect_timeout
|
15
|
+
error = nil
|
16
|
+
EM.run {
|
17
|
+
conn = EM.connect 'google.com', 81, Module.new{ |m|
|
18
|
+
m.send(:define_method, :unbind) do |reason|
|
19
|
+
error = reason
|
20
|
+
EM.stop
|
21
|
+
end
|
22
|
+
}
|
23
|
+
conn.pending_connect_timeout = TIMEOUT_INTERVAL
|
24
|
+
}
|
25
|
+
assert_equal Errno::ETIMEDOUT, error
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_connect_refused
|
29
|
+
pend('FIXME: this test is broken on Windows') if windows?
|
30
|
+
|
31
|
+
error = nil
|
32
|
+
EM.run {
|
33
|
+
EM.connect '127.0.0.1', 12388, Module.new{ |m|
|
34
|
+
m.send(:define_method, :unbind) do |reason|
|
35
|
+
error = reason
|
36
|
+
EM.stop
|
37
|
+
end
|
38
|
+
}
|
39
|
+
}
|
40
|
+
assert_equal Errno::ECONNREFUSED, error
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_optional_argument
|
44
|
+
pend('FIXME: this test is broken on Windows') if windows?
|
45
|
+
|
46
|
+
conn = nil
|
47
|
+
EM.run {
|
48
|
+
conn = EM.connect '127.0.0.1', 12388, StubConnection
|
49
|
+
}
|
50
|
+
assert_equal Errno::ECONNREFUSED, conn.error
|
51
|
+
end
|
52
|
+
end
|
metadata
ADDED
@@ -0,0 +1,381 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: eventmachine
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.0.dev.2
|
5
|
+
platform: x64-mingw32
|
6
|
+
authors:
|
7
|
+
- Francis Cianfrocca
|
8
|
+
- Aman Gupta
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-02-25 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: test-unit
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '2.0'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '2.0'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rake-compiler
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 0.9.5
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 0.9.5
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: rake-compiler-dock
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 0.5.1
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 0.5.1
|
56
|
+
description: |
|
57
|
+
EventMachine implements a fast, single-threaded engine for arbitrary network
|
58
|
+
communications. It's extremely easy to use in Ruby. EventMachine wraps all
|
59
|
+
interactions with IP sockets, allowing programs to concentrate on the
|
60
|
+
implementation of network protocols. It can be used to create both network
|
61
|
+
servers and clients. To create a server or client, a Ruby program only needs
|
62
|
+
to specify the IP address and port, and provide a Module that implements the
|
63
|
+
communications protocol. Implementations of several standard network protocols
|
64
|
+
are provided with the package, primarily to serve as examples. The real goal
|
65
|
+
of EventMachine is to enable programs to easily interface with other programs
|
66
|
+
using TCP/IP, especially if custom protocols are required.
|
67
|
+
email:
|
68
|
+
- garbagecat10@gmail.com
|
69
|
+
- aman@tmm1.net
|
70
|
+
executables: []
|
71
|
+
extensions: []
|
72
|
+
extra_rdoc_files:
|
73
|
+
- README.md
|
74
|
+
- docs/DocumentationGuidesIndex.md
|
75
|
+
- docs/GettingStarted.md
|
76
|
+
- docs/old/ChangeLog
|
77
|
+
- docs/old/DEFERRABLES
|
78
|
+
- docs/old/EPOLL
|
79
|
+
- docs/old/INSTALL
|
80
|
+
- docs/old/KEYBOARD
|
81
|
+
- docs/old/LEGAL
|
82
|
+
- docs/old/LIGHTWEIGHT_CONCURRENCY
|
83
|
+
- docs/old/PURE_RUBY
|
84
|
+
- docs/old/RELEASE_NOTES
|
85
|
+
- docs/old/SMTP
|
86
|
+
- docs/old/SPAWNED_PROCESSES
|
87
|
+
- docs/old/TODO
|
88
|
+
files:
|
89
|
+
- CHANGELOG.md
|
90
|
+
- GNU
|
91
|
+
- LICENSE
|
92
|
+
- README.md
|
93
|
+
- docs/DocumentationGuidesIndex.md
|
94
|
+
- docs/GettingStarted.md
|
95
|
+
- docs/old/ChangeLog
|
96
|
+
- docs/old/DEFERRABLES
|
97
|
+
- docs/old/EPOLL
|
98
|
+
- docs/old/INSTALL
|
99
|
+
- docs/old/KEYBOARD
|
100
|
+
- docs/old/LEGAL
|
101
|
+
- docs/old/LIGHTWEIGHT_CONCURRENCY
|
102
|
+
- docs/old/PURE_RUBY
|
103
|
+
- docs/old/RELEASE_NOTES
|
104
|
+
- docs/old/SMTP
|
105
|
+
- docs/old/SPAWNED_PROCESSES
|
106
|
+
- docs/old/TODO
|
107
|
+
- examples/guides/getting_started/01_eventmachine_echo_server.rb
|
108
|
+
- examples/guides/getting_started/02_eventmachine_echo_server_that_recognizes_exit_command.rb
|
109
|
+
- examples/guides/getting_started/03_simple_chat_server.rb
|
110
|
+
- examples/guides/getting_started/04_simple_chat_server_step_one.rb
|
111
|
+
- examples/guides/getting_started/05_simple_chat_server_step_two.rb
|
112
|
+
- examples/guides/getting_started/06_simple_chat_server_step_three.rb
|
113
|
+
- examples/guides/getting_started/07_simple_chat_server_step_four.rb
|
114
|
+
- examples/guides/getting_started/08_simple_chat_server_step_five.rb
|
115
|
+
- examples/old/ex_channel.rb
|
116
|
+
- examples/old/ex_queue.rb
|
117
|
+
- examples/old/ex_tick_loop_array.rb
|
118
|
+
- examples/old/ex_tick_loop_counter.rb
|
119
|
+
- examples/old/helper.rb
|
120
|
+
- ext/binder.cpp
|
121
|
+
- ext/binder.h
|
122
|
+
- ext/cmain.cpp
|
123
|
+
- ext/ed.cpp
|
124
|
+
- ext/ed.h
|
125
|
+
- ext/em.cpp
|
126
|
+
- ext/em.h
|
127
|
+
- ext/eventmachine.h
|
128
|
+
- ext/extconf.rb
|
129
|
+
- ext/fastfilereader/extconf.rb
|
130
|
+
- ext/fastfilereader/mapper.cpp
|
131
|
+
- ext/fastfilereader/mapper.h
|
132
|
+
- ext/fastfilereader/rubymain.cpp
|
133
|
+
- ext/kb.cpp
|
134
|
+
- ext/page.cpp
|
135
|
+
- ext/page.h
|
136
|
+
- ext/pipe.cpp
|
137
|
+
- ext/project.h
|
138
|
+
- ext/rubymain.cpp
|
139
|
+
- ext/ssl.cpp
|
140
|
+
- ext/ssl.h
|
141
|
+
- java/.classpath
|
142
|
+
- java/.project
|
143
|
+
- java/src/com/rubyeventmachine/EmReactor.java
|
144
|
+
- java/src/com/rubyeventmachine/EmReactorException.java
|
145
|
+
- java/src/com/rubyeventmachine/EventableChannel.java
|
146
|
+
- java/src/com/rubyeventmachine/EventableDatagramChannel.java
|
147
|
+
- java/src/com/rubyeventmachine/EventableSocketChannel.java
|
148
|
+
- lib/2.0/fastfilereaderext.so
|
149
|
+
- lib/2.0/rubyeventmachine.so
|
150
|
+
- lib/2.1/fastfilereaderext.so
|
151
|
+
- lib/2.1/rubyeventmachine.so
|
152
|
+
- lib/2.2/fastfilereaderext.so
|
153
|
+
- lib/2.2/rubyeventmachine.so
|
154
|
+
- lib/2.3/fastfilereaderext.so
|
155
|
+
- lib/2.3/rubyeventmachine.so
|
156
|
+
- lib/em/buftok.rb
|
157
|
+
- lib/em/callback.rb
|
158
|
+
- lib/em/channel.rb
|
159
|
+
- lib/em/completion.rb
|
160
|
+
- lib/em/connection.rb
|
161
|
+
- lib/em/deferrable.rb
|
162
|
+
- lib/em/deferrable/pool.rb
|
163
|
+
- lib/em/file_watch.rb
|
164
|
+
- lib/em/future.rb
|
165
|
+
- lib/em/iterator.rb
|
166
|
+
- lib/em/messages.rb
|
167
|
+
- lib/em/pool.rb
|
168
|
+
- lib/em/process_watch.rb
|
169
|
+
- lib/em/processes.rb
|
170
|
+
- lib/em/protocols.rb
|
171
|
+
- lib/em/protocols/header_and_content.rb
|
172
|
+
- lib/em/protocols/httpclient.rb
|
173
|
+
- lib/em/protocols/httpclient2.rb
|
174
|
+
- lib/em/protocols/line_and_text.rb
|
175
|
+
- lib/em/protocols/line_protocol.rb
|
176
|
+
- lib/em/protocols/linetext2.rb
|
177
|
+
- lib/em/protocols/memcache.rb
|
178
|
+
- lib/em/protocols/object_protocol.rb
|
179
|
+
- lib/em/protocols/postgres3.rb
|
180
|
+
- lib/em/protocols/saslauth.rb
|
181
|
+
- lib/em/protocols/smtpclient.rb
|
182
|
+
- lib/em/protocols/smtpserver.rb
|
183
|
+
- lib/em/protocols/socks4.rb
|
184
|
+
- lib/em/protocols/stomp.rb
|
185
|
+
- lib/em/protocols/tcptest.rb
|
186
|
+
- lib/em/pure_ruby.rb
|
187
|
+
- lib/em/queue.rb
|
188
|
+
- lib/em/resolver.rb
|
189
|
+
- lib/em/spawnable.rb
|
190
|
+
- lib/em/streamer.rb
|
191
|
+
- lib/em/threaded_resource.rb
|
192
|
+
- lib/em/tick_loop.rb
|
193
|
+
- lib/em/timers.rb
|
194
|
+
- lib/em/version.rb
|
195
|
+
- lib/eventmachine.rb
|
196
|
+
- lib/fastfilereaderext.rb
|
197
|
+
- lib/jeventmachine.rb
|
198
|
+
- lib/rubyeventmachine.rb
|
199
|
+
- rakelib/package.rake
|
200
|
+
- rakelib/test.rake
|
201
|
+
- tests/client.crt
|
202
|
+
- tests/client.key
|
203
|
+
- tests/dhparam.pem
|
204
|
+
- tests/em_test_helper.rb
|
205
|
+
- tests/test_attach.rb
|
206
|
+
- tests/test_basic.rb
|
207
|
+
- tests/test_channel.rb
|
208
|
+
- tests/test_completion.rb
|
209
|
+
- tests/test_connection_count.rb
|
210
|
+
- tests/test_connection_write.rb
|
211
|
+
- tests/test_defer.rb
|
212
|
+
- tests/test_deferrable.rb
|
213
|
+
- tests/test_epoll.rb
|
214
|
+
- tests/test_error_handler.rb
|
215
|
+
- tests/test_exc.rb
|
216
|
+
- tests/test_file_watch.rb
|
217
|
+
- tests/test_fork.rb
|
218
|
+
- tests/test_futures.rb
|
219
|
+
- tests/test_get_sock_opt.rb
|
220
|
+
- tests/test_handler_check.rb
|
221
|
+
- tests/test_hc.rb
|
222
|
+
- tests/test_httpclient.rb
|
223
|
+
- tests/test_httpclient2.rb
|
224
|
+
- tests/test_idle_connection.rb
|
225
|
+
- tests/test_inactivity_timeout.rb
|
226
|
+
- tests/test_ipv4.rb
|
227
|
+
- tests/test_ipv6.rb
|
228
|
+
- tests/test_iterator.rb
|
229
|
+
- tests/test_kb.rb
|
230
|
+
- tests/test_line_protocol.rb
|
231
|
+
- tests/test_ltp.rb
|
232
|
+
- tests/test_ltp2.rb
|
233
|
+
- tests/test_many_fds.rb
|
234
|
+
- tests/test_next_tick.rb
|
235
|
+
- tests/test_object_protocol.rb
|
236
|
+
- tests/test_pause.rb
|
237
|
+
- tests/test_pending_connect_timeout.rb
|
238
|
+
- tests/test_pool.rb
|
239
|
+
- tests/test_process_watch.rb
|
240
|
+
- tests/test_processes.rb
|
241
|
+
- tests/test_proxy_connection.rb
|
242
|
+
- tests/test_pure.rb
|
243
|
+
- tests/test_queue.rb
|
244
|
+
- tests/test_resolver.rb
|
245
|
+
- tests/test_running.rb
|
246
|
+
- tests/test_sasl.rb
|
247
|
+
- tests/test_send_file.rb
|
248
|
+
- tests/test_servers.rb
|
249
|
+
- tests/test_set_sock_opt.rb
|
250
|
+
- tests/test_shutdown_hooks.rb
|
251
|
+
- tests/test_smtpclient.rb
|
252
|
+
- tests/test_smtpserver.rb
|
253
|
+
- tests/test_spawn.rb
|
254
|
+
- tests/test_ssl_args.rb
|
255
|
+
- tests/test_ssl_dhparam.rb
|
256
|
+
- tests/test_ssl_ecdh_curve.rb
|
257
|
+
- tests/test_ssl_extensions.rb
|
258
|
+
- tests/test_ssl_methods.rb
|
259
|
+
- tests/test_ssl_protocols.rb
|
260
|
+
- tests/test_ssl_verify.rb
|
261
|
+
- tests/test_stomp.rb
|
262
|
+
- tests/test_system.rb
|
263
|
+
- tests/test_threaded_resource.rb
|
264
|
+
- tests/test_tick_loop.rb
|
265
|
+
- tests/test_timers.rb
|
266
|
+
- tests/test_ud.rb
|
267
|
+
- tests/test_unbind_reason.rb
|
268
|
+
homepage: http://rubyeventmachine.com
|
269
|
+
licenses:
|
270
|
+
- Ruby
|
271
|
+
- GPL-2.0
|
272
|
+
metadata: {}
|
273
|
+
post_install_message:
|
274
|
+
rdoc_options:
|
275
|
+
- "--title"
|
276
|
+
- EventMachine
|
277
|
+
- "--main"
|
278
|
+
- README.md
|
279
|
+
- "-x"
|
280
|
+
- lib/em/version
|
281
|
+
- "-x"
|
282
|
+
- lib/jeventmachine
|
283
|
+
require_paths:
|
284
|
+
- lib
|
285
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
286
|
+
requirements:
|
287
|
+
- - ">="
|
288
|
+
- !ruby/object:Gem::Version
|
289
|
+
version: '0'
|
290
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
291
|
+
requirements:
|
292
|
+
- - ">"
|
293
|
+
- !ruby/object:Gem::Version
|
294
|
+
version: 1.3.1
|
295
|
+
requirements: []
|
296
|
+
rubyforge_project:
|
297
|
+
rubygems_version: 2.5.1
|
298
|
+
signing_key:
|
299
|
+
specification_version: 4
|
300
|
+
summary: Ruby/EventMachine library
|
301
|
+
test_files:
|
302
|
+
- examples/guides/getting_started/01_eventmachine_echo_server.rb
|
303
|
+
- examples/guides/getting_started/02_eventmachine_echo_server_that_recognizes_exit_command.rb
|
304
|
+
- examples/guides/getting_started/03_simple_chat_server.rb
|
305
|
+
- examples/guides/getting_started/04_simple_chat_server_step_one.rb
|
306
|
+
- examples/guides/getting_started/05_simple_chat_server_step_two.rb
|
307
|
+
- examples/guides/getting_started/06_simple_chat_server_step_three.rb
|
308
|
+
- examples/guides/getting_started/07_simple_chat_server_step_four.rb
|
309
|
+
- examples/guides/getting_started/08_simple_chat_server_step_five.rb
|
310
|
+
- examples/old/ex_channel.rb
|
311
|
+
- examples/old/ex_queue.rb
|
312
|
+
- examples/old/ex_tick_loop_array.rb
|
313
|
+
- examples/old/ex_tick_loop_counter.rb
|
314
|
+
- examples/old/helper.rb
|
315
|
+
- tests/client.crt
|
316
|
+
- tests/client.key
|
317
|
+
- tests/dhparam.pem
|
318
|
+
- tests/em_test_helper.rb
|
319
|
+
- tests/test_attach.rb
|
320
|
+
- tests/test_basic.rb
|
321
|
+
- tests/test_channel.rb
|
322
|
+
- tests/test_completion.rb
|
323
|
+
- tests/test_connection_count.rb
|
324
|
+
- tests/test_connection_write.rb
|
325
|
+
- tests/test_defer.rb
|
326
|
+
- tests/test_deferrable.rb
|
327
|
+
- tests/test_epoll.rb
|
328
|
+
- tests/test_error_handler.rb
|
329
|
+
- tests/test_exc.rb
|
330
|
+
- tests/test_file_watch.rb
|
331
|
+
- tests/test_fork.rb
|
332
|
+
- tests/test_futures.rb
|
333
|
+
- tests/test_get_sock_opt.rb
|
334
|
+
- tests/test_handler_check.rb
|
335
|
+
- tests/test_hc.rb
|
336
|
+
- tests/test_httpclient.rb
|
337
|
+
- tests/test_httpclient2.rb
|
338
|
+
- tests/test_idle_connection.rb
|
339
|
+
- tests/test_inactivity_timeout.rb
|
340
|
+
- tests/test_ipv4.rb
|
341
|
+
- tests/test_ipv6.rb
|
342
|
+
- tests/test_iterator.rb
|
343
|
+
- tests/test_kb.rb
|
344
|
+
- tests/test_line_protocol.rb
|
345
|
+
- tests/test_ltp.rb
|
346
|
+
- tests/test_ltp2.rb
|
347
|
+
- tests/test_many_fds.rb
|
348
|
+
- tests/test_next_tick.rb
|
349
|
+
- tests/test_object_protocol.rb
|
350
|
+
- tests/test_pause.rb
|
351
|
+
- tests/test_pending_connect_timeout.rb
|
352
|
+
- tests/test_pool.rb
|
353
|
+
- tests/test_process_watch.rb
|
354
|
+
- tests/test_processes.rb
|
355
|
+
- tests/test_proxy_connection.rb
|
356
|
+
- tests/test_pure.rb
|
357
|
+
- tests/test_queue.rb
|
358
|
+
- tests/test_resolver.rb
|
359
|
+
- tests/test_running.rb
|
360
|
+
- tests/test_sasl.rb
|
361
|
+
- tests/test_send_file.rb
|
362
|
+
- tests/test_servers.rb
|
363
|
+
- tests/test_set_sock_opt.rb
|
364
|
+
- tests/test_shutdown_hooks.rb
|
365
|
+
- tests/test_smtpclient.rb
|
366
|
+
- tests/test_smtpserver.rb
|
367
|
+
- tests/test_spawn.rb
|
368
|
+
- tests/test_ssl_args.rb
|
369
|
+
- tests/test_ssl_dhparam.rb
|
370
|
+
- tests/test_ssl_ecdh_curve.rb
|
371
|
+
- tests/test_ssl_extensions.rb
|
372
|
+
- tests/test_ssl_methods.rb
|
373
|
+
- tests/test_ssl_protocols.rb
|
374
|
+
- tests/test_ssl_verify.rb
|
375
|
+
- tests/test_stomp.rb
|
376
|
+
- tests/test_system.rb
|
377
|
+
- tests/test_threaded_resource.rb
|
378
|
+
- tests/test_tick_loop.rb
|
379
|
+
- tests/test_timers.rb
|
380
|
+
- tests/test_ud.rb
|
381
|
+
- tests/test_unbind_reason.rb
|