ed-precompiled_nio4r 2.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/libev/Changes +617 -0
- data/ext/libev/LICENSE +37 -0
- data/ext/libev/README +59 -0
- data/ext/libev/ev.c +5689 -0
- data/ext/libev/ev.h +859 -0
- data/ext/libev/ev_epoll.c +298 -0
- data/ext/libev/ev_iouring.c +694 -0
- data/ext/libev/ev_kqueue.c +224 -0
- data/ext/libev/ev_linuxaio.c +620 -0
- data/ext/libev/ev_poll.c +156 -0
- data/ext/libev/ev_port.c +192 -0
- data/ext/libev/ev_select.c +316 -0
- data/ext/libev/ev_vars.h +249 -0
- data/ext/libev/ev_win32.c +162 -0
- data/ext/libev/ev_wrap.h +272 -0
- data/ext/nio4r/.clang-format +16 -0
- data/ext/nio4r/bytebuffer.c +465 -0
- data/ext/nio4r/extconf.rb +53 -0
- data/ext/nio4r/libev.h +7 -0
- data/ext/nio4r/monitor.c +344 -0
- data/ext/nio4r/nio4r.h +48 -0
- data/ext/nio4r/nio4r_ext.c +24 -0
- data/ext/nio4r/org/nio4r/ByteBuffer.java +295 -0
- data/ext/nio4r/org/nio4r/Monitor.java +176 -0
- data/ext/nio4r/org/nio4r/Nio4r.java +104 -0
- data/ext/nio4r/org/nio4r/Selector.java +297 -0
- data/ext/nio4r/selector.c +606 -0
- data/lib/nio/bytebuffer.rb +235 -0
- data/lib/nio/monitor.rb +124 -0
- data/lib/nio/selector.rb +188 -0
- data/lib/nio/version.rb +10 -0
- data/lib/nio.rb +66 -0
- data/lib/nio4r.rb +7 -0
- data/license.md +80 -0
- data/readme.md +91 -0
- data/releases.md +343 -0
- metadata +131 -0
data/readme.md
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# 
|
|
2
|
+
|
|
3
|
+
[](https://github.com/socketry/nio4r/actions?workflow=Test)
|
|
4
|
+
|
|
5
|
+
**New I/O for Ruby (nio4r)**: cross-platform asynchronous I/O primitives for
|
|
6
|
+
scalable network clients and servers. Modeled after the Java NIO API, but
|
|
7
|
+
simplified for ease-of-use.
|
|
8
|
+
|
|
9
|
+
**nio4r** provides an abstract, cross-platform stateful I/O selector API for Ruby.
|
|
10
|
+
I/O selectors are the heart of "reactor"-based event loops, and monitor
|
|
11
|
+
multiple I/O objects for various types of readiness, e.g. ready for reading or
|
|
12
|
+
writing.
|
|
13
|
+
|
|
14
|
+
## Projects using nio4r
|
|
15
|
+
|
|
16
|
+
- [ActionCable](https://rubygems.org/gems/actioncable): Rails 5 WebSocket protocol, uses nio4r for a WebSocket server
|
|
17
|
+
- [Celluloid](https://github.com/celluloid/celluloid-io): Actor-based concurrency framework, uses nio4r for async I/O
|
|
18
|
+
- [Async](https://github.com/socketry/async): Asynchronous I/O framework for Ruby
|
|
19
|
+
- [Puma](https://github.com/puma/puma): Ruby/Rack web server built for concurrency
|
|
20
|
+
|
|
21
|
+
## Goals
|
|
22
|
+
|
|
23
|
+
- Expose high-level interfaces for stateful IO selectors
|
|
24
|
+
- Keep the API small to maximize both portability and performance across many
|
|
25
|
+
different OSes and Ruby VMs
|
|
26
|
+
- Provide inherently thread-safe facilities for working with IO objects
|
|
27
|
+
|
|
28
|
+
## Supported platforms
|
|
29
|
+
|
|
30
|
+
- Ruby 2.5
|
|
31
|
+
- Ruby 2.6
|
|
32
|
+
- Ruby 2.7
|
|
33
|
+
- Ruby 3.0
|
|
34
|
+
- [JRuby](https://github.com/jruby/jruby)
|
|
35
|
+
- [TruffleRuby](https://github.com/oracle/truffleruby)
|
|
36
|
+
|
|
37
|
+
## Supported backends
|
|
38
|
+
|
|
39
|
+
- **libev**: MRI C extension targeting multiple native IO selector APIs (e.g epoll, kqueue)
|
|
40
|
+
- **Java NIO**: JRuby extension which wraps the Java NIO subsystem
|
|
41
|
+
- **Pure Ruby**: `Kernel.select`-based backend that should work on any Ruby interpreter
|
|
42
|
+
|
|
43
|
+
## Documentation
|
|
44
|
+
|
|
45
|
+
[Please see the nio4r wiki](https://github.com/socketry/nio4r/wiki)
|
|
46
|
+
for more detailed documentation and usage notes:
|
|
47
|
+
|
|
48
|
+
- [Getting Started](https://github.com/socketry/nio4r/wiki/Getting-Started): Introduction to nio4r's components
|
|
49
|
+
- [Selectors](https://github.com/socketry/nio4r/wiki/Selectors): monitor multiple `IO` objects for readiness events
|
|
50
|
+
- [Monitors](https://github.com/socketry/nio4r/wiki/Monitors): control interests and inspect readiness for specific `IO` objects
|
|
51
|
+
- [Byte Buffers](https://github.com/socketry/nio4r/wiki/Byte-Buffers): fixed-size native buffers for high-performance I/O
|
|
52
|
+
|
|
53
|
+
See also:
|
|
54
|
+
|
|
55
|
+
- [YARD API documentation](http://www.rubydoc.info/gems/nio4r/frames)
|
|
56
|
+
|
|
57
|
+
## Non-goals
|
|
58
|
+
|
|
59
|
+
**nio4r** is not a full-featured event framework like [EventMachine](https://github.com/eventmachine/eventmachine) or [Cool.io](https://coolio.github.io/).
|
|
60
|
+
Instead, nio4r is the sort of thing you might write a library like that on
|
|
61
|
+
top of. nio4r provides a minimal API such that individual Ruby implementers
|
|
62
|
+
may choose to produce optimized versions for their platform, without having
|
|
63
|
+
to maintain a large codebase.
|
|
64
|
+
|
|
65
|
+
## Releases
|
|
66
|
+
|
|
67
|
+
Bump the version first:
|
|
68
|
+
|
|
69
|
+
bundle exec bake gem:release:version:patch
|
|
70
|
+
|
|
71
|
+
### CRuby
|
|
72
|
+
|
|
73
|
+
rake clean
|
|
74
|
+
rake release
|
|
75
|
+
|
|
76
|
+
### JRuby
|
|
77
|
+
|
|
78
|
+
You might need to delete `Gemfile.lock` before trying to `bundle install`.
|
|
79
|
+
|
|
80
|
+
# Ensure you have the correct JDK:
|
|
81
|
+
pacman -Syu jdk-openjdk
|
|
82
|
+
archlinux-java set java-19-openjdk
|
|
83
|
+
|
|
84
|
+
# Ensure you are using jruby:
|
|
85
|
+
chruby jruby
|
|
86
|
+
bundle update
|
|
87
|
+
|
|
88
|
+
# Build the package:
|
|
89
|
+
rake clean
|
|
90
|
+
rake compile
|
|
91
|
+
rake release
|
data/releases.md
ADDED
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
# Releases
|
|
2
|
+
|
|
3
|
+
## 2.7.4
|
|
4
|
+
|
|
5
|
+
* Fix JRuby release.
|
|
6
|
+
* Mark as ractor safe.
|
|
7
|
+
|
|
8
|
+
## 2.7.3
|
|
9
|
+
|
|
10
|
+
* Improve release handling.
|
|
11
|
+
|
|
12
|
+
## 2.7.2
|
|
13
|
+
|
|
14
|
+
* Modernize gem (list all authors, etc).
|
|
15
|
+
* Drop official support for Ruby 2.4.
|
|
16
|
+
* Fix JRuby release version.
|
|
17
|
+
|
|
18
|
+
## 2.7.1
|
|
19
|
+
|
|
20
|
+
* Fix license specification.
|
|
21
|
+
* Fix JRuby build warnings.
|
|
22
|
+
|
|
23
|
+
## 2.7.0
|
|
24
|
+
|
|
25
|
+
* Convert NIO objects to TypedData API.
|
|
26
|
+
|
|
27
|
+
## 2.6.1
|
|
28
|
+
|
|
29
|
+
* Don't update `io` which is subsequently stored. Retain the original.
|
|
30
|
+
|
|
31
|
+
## 2.6.0
|
|
32
|
+
|
|
33
|
+
* Fix conversion loses int precision.
|
|
34
|
+
* Avoid direct access to IO internals.
|
|
35
|
+
* Resolve issue loading both nio and nio4r gems.
|
|
36
|
+
|
|
37
|
+
## 2.5.9 (2023-04-02)
|
|
38
|
+
|
|
39
|
+
https://github.com/socketry/nio4r/compare/v2.5.8..v2.5.9
|
|
40
|
+
|
|
41
|
+
## 2.5.8 (2021-08-03)
|
|
42
|
+
|
|
43
|
+
* [#276](https://github.com/socketry/nio4r/pull/276)
|
|
44
|
+
Fix missing return statement in function returning non-void (issue [#275](https://github.com/socketry/nio4r/pull/275))
|
|
45
|
+
([@ioquatix])
|
|
46
|
+
* Remove `guard-rspec` from development dependencies ([@ioquatix])
|
|
47
|
+
|
|
48
|
+
## 2.5.7 (2021-03-04)
|
|
49
|
+
|
|
50
|
+
* [#267](https://github.com/socketry/nio4r/pull/267)
|
|
51
|
+
Don't try to link universal extension
|
|
52
|
+
([@ioquatix])
|
|
53
|
+
|
|
54
|
+
## 2.5.6 (2021-03-04)
|
|
55
|
+
|
|
56
|
+
* [#268](https://github.com/socketry/nio4r/pull/268)
|
|
57
|
+
Prefer kqueue when on OSX >= v10.12.2
|
|
58
|
+
([@jcmfernandes])
|
|
59
|
+
|
|
60
|
+
## 2.5.5 (2021-02-05)
|
|
61
|
+
|
|
62
|
+
* [#256](https://github.com/socketry/nio4r/pull/256)
|
|
63
|
+
Use libev 4.33, featuring experimental `io_uring` support.
|
|
64
|
+
([@jcmfernandes])
|
|
65
|
+
|
|
66
|
+
* [#260](https://github.com/socketry/nio4r/pull/260)
|
|
67
|
+
Workaround for ARM-based macOS Ruby: Use pure Ruby for M1, since the native extension is crashing on M1 (arm64).
|
|
68
|
+
([@jasl])
|
|
69
|
+
|
|
70
|
+
* [#252](https://github.com/socketry/nio4r/pull/252)
|
|
71
|
+
JRuby: Fix javac -Xlint warnings
|
|
72
|
+
([@headius])
|
|
73
|
+
|
|
74
|
+
## 2.5.4 (2020-09-16)
|
|
75
|
+
|
|
76
|
+
* [#251](https://github.com/socketry/nio4r/issues/251)
|
|
77
|
+
Intermittent SEGV during GC.
|
|
78
|
+
([@boazsegev])
|
|
79
|
+
|
|
80
|
+
## 2.5.3 (2020-09-07)
|
|
81
|
+
|
|
82
|
+
* [#241](https://github.com/socketry/nio4r/issues/241)
|
|
83
|
+
Possible bug with Ruby >= 2.7.0 and `GC.compact`.
|
|
84
|
+
([@boazsegev])
|
|
85
|
+
|
|
86
|
+
## 2.5.2 (2019-09-24)
|
|
87
|
+
|
|
88
|
+
* [#220](https://github.com/socketry/nio4r/issues/220)
|
|
89
|
+
Update to libev-4.27 & fix assorted warnings.
|
|
90
|
+
([@ioquatix])
|
|
91
|
+
|
|
92
|
+
* [#225](https://github.com/socketry/nio4r/issues/225)
|
|
93
|
+
Avoid need for linux headers.
|
|
94
|
+
([@ioquatix])
|
|
95
|
+
|
|
96
|
+
## 2.4.0 (2019-07-07)
|
|
97
|
+
|
|
98
|
+
* [#211](https://github.com/socketry/nio4r/pull/211)
|
|
99
|
+
Enable KQUEUE on macOS 10.14+.
|
|
100
|
+
([@ioquatix])
|
|
101
|
+
|
|
102
|
+
* Bump minimum supported Ruby to 2.3.
|
|
103
|
+
([@ioquatix])
|
|
104
|
+
|
|
105
|
+
* Assorted fixes for TruffleRuby & JRuby.
|
|
106
|
+
([@eregon], [@olleolleolle])
|
|
107
|
+
Possible bug with Ruby >= 2.7.0 and `GC.compact`
|
|
108
|
+
* Update libev to v4.25.
|
|
109
|
+
([@ioquatix])
|
|
110
|
+
|
|
111
|
+
* Bind to ephemeral (port 0) for more reliable specs.
|
|
112
|
+
([@ioquatix])
|
|
113
|
+
|
|
114
|
+
* Improve handling of SSL sockets and related specs.
|
|
115
|
+
([@MSP-Greg])
|
|
116
|
+
|
|
117
|
+
## 2.3.1 (2018-05-03)
|
|
118
|
+
|
|
119
|
+
* [#188](https://github.com/socketry/nio4r/pull/188)
|
|
120
|
+
Fix remove interests
|
|
121
|
+
([@ioquatix])
|
|
122
|
+
|
|
123
|
+
## 2.3.0 (2018-03-15)
|
|
124
|
+
|
|
125
|
+
* [#183](https://github.com/socketry/nio4r/pull/183)
|
|
126
|
+
Allow `Monitor#interests` to be nil
|
|
127
|
+
([@ioquatix])
|
|
128
|
+
|
|
129
|
+
## 2.2.0 (2017-12-27)
|
|
130
|
+
|
|
131
|
+
* [#151](https://github.com/socketry/nio4r/pull/151)
|
|
132
|
+
`NIO::Selector`: Support for enumerating and configuring backend
|
|
133
|
+
([@tarcieri])
|
|
134
|
+
|
|
135
|
+
* [#153](https://github.com/socketry/nio4r/pull/153)
|
|
136
|
+
Fix builds on Windows
|
|
137
|
+
([@unak])
|
|
138
|
+
|
|
139
|
+
* [#157](https://github.com/socketry/nio4r/pull/157)
|
|
140
|
+
Windows / MinGW test failure - fix spec_helper.rb
|
|
141
|
+
([@MSP-Greg])
|
|
142
|
+
|
|
143
|
+
* [#162](https://github.com/socketry/nio4r/pull/162)
|
|
144
|
+
Don't build the C extension on Windows
|
|
145
|
+
([@larskanis])
|
|
146
|
+
|
|
147
|
+
* [#164](https://github.com/socketry/nio4r/pull/164)
|
|
148
|
+
Fix NIO::ByteBuffer leak
|
|
149
|
+
([@HoneyryderChuck])
|
|
150
|
+
|
|
151
|
+
* [#170](https://github.com/socketry/nio4r/pull/170)
|
|
152
|
+
Avoid CancelledKeyExceptions on JRuby
|
|
153
|
+
([@HoneyryderChuck])
|
|
154
|
+
|
|
155
|
+
* [#177](https://github.com/socketry/nio4r/pull/177)
|
|
156
|
+
Fix `NIO::ByteBuffer` string conversions on JRuby
|
|
157
|
+
([@tarcieri])
|
|
158
|
+
|
|
159
|
+
* [#179](https://github.com/socketry/nio4r/pull/179)
|
|
160
|
+
Fix argument error when running on ruby 2.5.0
|
|
161
|
+
([@tompng])
|
|
162
|
+
|
|
163
|
+
* [#180](https://github.com/socketry/nio4r/pull/180)
|
|
164
|
+
ext/nio4r/extconf.rb: check for port_event_t in port.h (fixes #178)
|
|
165
|
+
([@tarcieri])
|
|
166
|
+
|
|
167
|
+
## 2.1.0 (2017-05-28)
|
|
168
|
+
|
|
169
|
+
* [#130](https://github.com/socketry/nio4r/pull/130)
|
|
170
|
+
Add -fno-strict-aliasing flag when compiling C ext.
|
|
171
|
+
([@junaruga])
|
|
172
|
+
|
|
173
|
+
* [#146](https://github.com/socketry/nio4r/pull/146)
|
|
174
|
+
Use non-blocking select when a timeout of 0 is given.
|
|
175
|
+
([@tarcieri])
|
|
176
|
+
|
|
177
|
+
* [#147](https://github.com/socketry/nio4r/pull/147)
|
|
178
|
+
Update to libev 4.24.
|
|
179
|
+
([@tarcieri])
|
|
180
|
+
|
|
181
|
+
* [#148](https://github.com/socketry/nio4r/pull/148)
|
|
182
|
+
Switch to the libev 4 API internally.
|
|
183
|
+
([@tarcieri])
|
|
184
|
+
|
|
185
|
+
## 2.0.0 (2016-12-28)
|
|
186
|
+
|
|
187
|
+
* [#53](https://github.com/socketry/nio4r/pull/53)
|
|
188
|
+
Limit lock scope to prevent recursive locking.
|
|
189
|
+
([@johnnyt])
|
|
190
|
+
|
|
191
|
+
* [#95](https://github.com/socketry/nio4r/pull/95)
|
|
192
|
+
NIO::ByteBuffer Google Summer of Code project.
|
|
193
|
+
([@UpeksheJay], [@tarcieri])
|
|
194
|
+
|
|
195
|
+
* [#111](https://github.com/socketry/nio4r/pull/111)
|
|
196
|
+
NIO::Selector#backend introspection support.
|
|
197
|
+
([@tarcieri])
|
|
198
|
+
|
|
199
|
+
* [#112](https://github.com/socketry/nio4r/pull/112)
|
|
200
|
+
Upgrade to libev 4.23.
|
|
201
|
+
([@tarcieri])
|
|
202
|
+
|
|
203
|
+
* [#119](https://github.com/socketry/nio4r/pull/119)
|
|
204
|
+
Disambiguate wakeup vs timeout (fixes #63, #66).
|
|
205
|
+
([@tarcieri])
|
|
206
|
+
|
|
207
|
+
* [#124](https://github.com/socketry/nio4r/pull/124)
|
|
208
|
+
Monitor interests API improvements.
|
|
209
|
+
([@tarcieri])
|
|
210
|
+
|
|
211
|
+
* Drop Ruby 2.0 and 2.1 support, require Ruby 2.2.2+.
|
|
212
|
+
([@tarcieri])
|
|
213
|
+
|
|
214
|
+
## 1.2.1 (2016-01-31)
|
|
215
|
+
|
|
216
|
+
* Fix bug in the JRuby backend which cases indefinite blocking when small
|
|
217
|
+
timeout values are passed to the selector
|
|
218
|
+
|
|
219
|
+
## 1.2.0 (2015-12-22)
|
|
220
|
+
|
|
221
|
+
* Add NIO::Monitor#interests= API for changing interests. Contributed by
|
|
222
|
+
Upekshe Jayasekera as a Google Summer of Code project.
|
|
223
|
+
* Update to libev 4.22
|
|
224
|
+
|
|
225
|
+
## 1.1.1 (2015-07-17)
|
|
226
|
+
|
|
227
|
+
* Update to libev 4.20
|
|
228
|
+
* Fall back to io.h if unistd.h is not found
|
|
229
|
+
* RSpec updates
|
|
230
|
+
* RuboCop
|
|
231
|
+
|
|
232
|
+
## 1.1.0 (2015-01-10)
|
|
233
|
+
|
|
234
|
+
* Update to libev 4.19
|
|
235
|
+
* Do not call ev_io_stop on monitors if the loop is already closed
|
|
236
|
+
|
|
237
|
+
## 1.0.1 (2014-09-01)
|
|
238
|
+
|
|
239
|
+
* Fix C compiler warnings
|
|
240
|
+
* Eliminate Ruby warnings about @lock_holder
|
|
241
|
+
* Windows improvements
|
|
242
|
+
* Better support for Ruby 2.1
|
|
243
|
+
* Automatically require 'set'
|
|
244
|
+
* Update to RSpec 3
|
|
245
|
+
|
|
246
|
+
## 1.0.0 (2014-01-14)
|
|
247
|
+
|
|
248
|
+
* Have Selector#register obtain the actual IO from a Monitor object
|
|
249
|
+
because Monitor#initialize might convert it.
|
|
250
|
+
* Drop 1.8 support
|
|
251
|
+
|
|
252
|
+
## 0.5.0 (2013-08-06)
|
|
253
|
+
|
|
254
|
+
* Fix segv when attempting to register to a closed selector
|
|
255
|
+
* Fix Windows support on Ruby 2.0.0
|
|
256
|
+
* Upgrade to libev 4.15
|
|
257
|
+
|
|
258
|
+
## 0.4.6 (2013-05-27)
|
|
259
|
+
|
|
260
|
+
* Fix for JRuby on Windows
|
|
261
|
+
|
|
262
|
+
## 0.4.5
|
|
263
|
+
|
|
264
|
+
* Fix botched gem release
|
|
265
|
+
|
|
266
|
+
## 0.4.4
|
|
267
|
+
|
|
268
|
+
* Fix return values for Selector_synchronize and Selector_unlock
|
|
269
|
+
|
|
270
|
+
## 0.4.3
|
|
271
|
+
|
|
272
|
+
* REALLY have thread synchronization when closing selectors ;)
|
|
273
|
+
|
|
274
|
+
## 0.4.2
|
|
275
|
+
|
|
276
|
+
* Attempt to work around packaging problems with bundler-api o_O
|
|
277
|
+
|
|
278
|
+
## 0.4.1
|
|
279
|
+
|
|
280
|
+
* Thread synchronization when closing selectors
|
|
281
|
+
|
|
282
|
+
## 0.4.0
|
|
283
|
+
|
|
284
|
+
* OpenSSL::SSL::SSLSocket support
|
|
285
|
+
|
|
286
|
+
## 0.3.3
|
|
287
|
+
|
|
288
|
+
* NIO::Selector#select_each removed
|
|
289
|
+
* Remove event buffer
|
|
290
|
+
* Patch GIL unlock directly into libev
|
|
291
|
+
* Re-release since 0.3.2 was botched :(
|
|
292
|
+
|
|
293
|
+
## 0.3.1
|
|
294
|
+
|
|
295
|
+
* Prevent CancelledKeyExceptions on JRuby
|
|
296
|
+
|
|
297
|
+
## 0.3.0
|
|
298
|
+
|
|
299
|
+
* NIO::Selector#select now takes a block and behaves like select_each
|
|
300
|
+
* NIO::Selector#select_each is now deprecated and will be removed
|
|
301
|
+
* Closing monitors detaches them from their selector
|
|
302
|
+
* Java extension for JRuby
|
|
303
|
+
* Upgrade to libev 4.11
|
|
304
|
+
* Bugfixes for zero/negative select timeouts
|
|
305
|
+
* Handle OP_CONNECT properly on JRuby
|
|
306
|
+
|
|
307
|
+
## 0.2.2
|
|
308
|
+
|
|
309
|
+
* Raise IOError if asked to wake up a closed selector
|
|
310
|
+
|
|
311
|
+
## 0.2.1
|
|
312
|
+
|
|
313
|
+
* Implement wakeup mechanism using raw pipes instead of ev_async, since
|
|
314
|
+
ev_async likes to cause segvs when used across threads (despite claims
|
|
315
|
+
in the documentation to the contrary)
|
|
316
|
+
|
|
317
|
+
## 0.2.0
|
|
318
|
+
|
|
319
|
+
* NIO::Monitor#readiness API to query readiness, along with #readable? and
|
|
320
|
+
#writable? helper methods
|
|
321
|
+
* NIO::Selector#select_each API which avoids memory allocations if possible
|
|
322
|
+
* Bugfixes for the JRuby implementation
|
|
323
|
+
|
|
324
|
+
## 0.1.0
|
|
325
|
+
|
|
326
|
+
* Initial release. Merry Christmas!
|
|
327
|
+
|
|
328
|
+
[@tarcieri]: https://github.com/tarcieri
|
|
329
|
+
[@johnnyt]: https://github.com/johnnyt
|
|
330
|
+
[@UpeksheJay]: https://github.com/UpeksheJay
|
|
331
|
+
[@junaruga]: https://github.com/junaruga
|
|
332
|
+
[@unak]: https://github.com/unak
|
|
333
|
+
[@MSP-Greg]: https://github.com/MSP-Greg
|
|
334
|
+
[@larskanis]: https://github.com/larskanis
|
|
335
|
+
[@HoneyryderChuck]: https://github.com/HoneyryderChuck
|
|
336
|
+
[@tompng]: https://github.com/tompng
|
|
337
|
+
[@ioquatix]: https://github.com/ioquatix
|
|
338
|
+
[@eregon]: https://github.com/eregon
|
|
339
|
+
[@olleolleolle]: https://github.com/olleolleolle
|
|
340
|
+
[@boazsegev]: https://github.com/boazsegev
|
|
341
|
+
[@headius]: https://github.com/headius
|
|
342
|
+
[@jasl]: https://github.com/jasl
|
|
343
|
+
[@jcmfernandes]: https://github.com/jcmfernandes
|
metadata
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ed-precompiled_nio4r
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.7.4
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Tony Arcieri
|
|
8
|
+
- Samuel Williams
|
|
9
|
+
- Olle Jonsson
|
|
10
|
+
- Gregory Longtin
|
|
11
|
+
- Tiago Cardoso
|
|
12
|
+
- Joao Fernandes
|
|
13
|
+
- Thomas Dziedzic
|
|
14
|
+
- Boaz Segev
|
|
15
|
+
- Logan Bowers
|
|
16
|
+
- Pedro Paiva
|
|
17
|
+
- Jun Aruga
|
|
18
|
+
- Omer Katz
|
|
19
|
+
- Upekshe Jayasekera
|
|
20
|
+
- Tim Carey-Smith
|
|
21
|
+
- Benoit Daloze
|
|
22
|
+
- Sergey Avseyev
|
|
23
|
+
- Tomoya Ishida
|
|
24
|
+
- Usaku Nakamura
|
|
25
|
+
- Cédric Boutillier
|
|
26
|
+
- Daniel Berger
|
|
27
|
+
- Dirkjan Bussink
|
|
28
|
+
- Hiroshi Shibata
|
|
29
|
+
- Jesús Burgos Maciá
|
|
30
|
+
- Luis Lavena
|
|
31
|
+
- Pavel Rosický
|
|
32
|
+
- Sadayuki Furuhashi
|
|
33
|
+
- Stephen von Takach
|
|
34
|
+
- Vladimir Kochnev
|
|
35
|
+
- Vít Ondruch
|
|
36
|
+
- Anatol Pomozov
|
|
37
|
+
- Bernd Ahlers
|
|
38
|
+
- Charles Oliver Nutter
|
|
39
|
+
- Denis Washington
|
|
40
|
+
- Elad Eyal
|
|
41
|
+
- Jean byroot Boussier
|
|
42
|
+
- Jeffrey Martin
|
|
43
|
+
- John Thornton
|
|
44
|
+
- Jun Jiang
|
|
45
|
+
- Lars Kanis
|
|
46
|
+
- Marek Kowalcze
|
|
47
|
+
- Maxime Demolin
|
|
48
|
+
- Orien Madgwick
|
|
49
|
+
- Pavel Lobashov
|
|
50
|
+
- Per Lundberg
|
|
51
|
+
- Phillip Aldridge
|
|
52
|
+
- Ravil Bayramgalin
|
|
53
|
+
- Shannon Skipper
|
|
54
|
+
- Tao Luo
|
|
55
|
+
- Thomas Kuntz
|
|
56
|
+
- Tsimnuj Hawj
|
|
57
|
+
- Zhang Kang
|
|
58
|
+
bindir: bin
|
|
59
|
+
cert_chain: []
|
|
60
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
61
|
+
dependencies: []
|
|
62
|
+
executables: []
|
|
63
|
+
extensions:
|
|
64
|
+
- ext/nio4r/extconf.rb
|
|
65
|
+
extra_rdoc_files: []
|
|
66
|
+
files:
|
|
67
|
+
- ext/libev/Changes
|
|
68
|
+
- ext/libev/LICENSE
|
|
69
|
+
- ext/libev/README
|
|
70
|
+
- ext/libev/ev.c
|
|
71
|
+
- ext/libev/ev.h
|
|
72
|
+
- ext/libev/ev_epoll.c
|
|
73
|
+
- ext/libev/ev_iouring.c
|
|
74
|
+
- ext/libev/ev_kqueue.c
|
|
75
|
+
- ext/libev/ev_linuxaio.c
|
|
76
|
+
- ext/libev/ev_poll.c
|
|
77
|
+
- ext/libev/ev_port.c
|
|
78
|
+
- ext/libev/ev_select.c
|
|
79
|
+
- ext/libev/ev_vars.h
|
|
80
|
+
- ext/libev/ev_win32.c
|
|
81
|
+
- ext/libev/ev_wrap.h
|
|
82
|
+
- ext/nio4r/.clang-format
|
|
83
|
+
- ext/nio4r/bytebuffer.c
|
|
84
|
+
- ext/nio4r/extconf.rb
|
|
85
|
+
- ext/nio4r/libev.h
|
|
86
|
+
- ext/nio4r/monitor.c
|
|
87
|
+
- ext/nio4r/nio4r.h
|
|
88
|
+
- ext/nio4r/nio4r_ext.c
|
|
89
|
+
- ext/nio4r/org/nio4r/ByteBuffer.java
|
|
90
|
+
- ext/nio4r/org/nio4r/Monitor.java
|
|
91
|
+
- ext/nio4r/org/nio4r/Nio4r.java
|
|
92
|
+
- ext/nio4r/org/nio4r/Selector.java
|
|
93
|
+
- ext/nio4r/selector.c
|
|
94
|
+
- lib/nio.rb
|
|
95
|
+
- lib/nio/bytebuffer.rb
|
|
96
|
+
- lib/nio/monitor.rb
|
|
97
|
+
- lib/nio/selector.rb
|
|
98
|
+
- lib/nio/version.rb
|
|
99
|
+
- lib/nio4r.rb
|
|
100
|
+
- license.md
|
|
101
|
+
- readme.md
|
|
102
|
+
- releases.md
|
|
103
|
+
homepage: https://github.com/socketry/nio4r
|
|
104
|
+
licenses:
|
|
105
|
+
- MIT
|
|
106
|
+
- BSD-2-Clause
|
|
107
|
+
metadata:
|
|
108
|
+
bug_tracker_uri: https://github.com/socketry/nio4r/issues
|
|
109
|
+
changelog_uri: https://github.com/socketry/nio4r/blob/main/releases.md
|
|
110
|
+
documentation_uri: https://www.rubydoc.info/gems/nio4r
|
|
111
|
+
funding_uri: https://github.com/sponsors/ioquatix/
|
|
112
|
+
source_code_uri: https://github.com/socketry/nio4r.git
|
|
113
|
+
wiki_uri: https://github.com/socketry/nio4r/wiki
|
|
114
|
+
rdoc_options: []
|
|
115
|
+
require_paths:
|
|
116
|
+
- lib
|
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
118
|
+
requirements:
|
|
119
|
+
- - ">="
|
|
120
|
+
- !ruby/object:Gem::Version
|
|
121
|
+
version: '2.6'
|
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
|
+
requirements:
|
|
124
|
+
- - ">="
|
|
125
|
+
- !ruby/object:Gem::Version
|
|
126
|
+
version: '0'
|
|
127
|
+
requirements: []
|
|
128
|
+
rubygems_version: 3.6.7
|
|
129
|
+
specification_version: 4
|
|
130
|
+
summary: New IO for Ruby
|
|
131
|
+
test_files: []
|