io-event 1.6.0 → 1.6.1
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/ext/io/event/selector/epoll.c +1 -1
- data/ext/io/event/selector/kqueue.c +1 -1
- data/ext/io/event/selector/uring.c +1 -1
- data/lib/io/event/version.rb +1 -1
- data/readme.md +1 -1
- data.tar.gz.sig +0 -0
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea935760f7d99c16037d0737c0b67e7fa7f407f502e3035abced4396d4d90ca5
|
|
4
|
+
data.tar.gz: 28c4387ae3ad0dec06a0bbd13de4db04a0277b826a500a2fa12840dc2fb7ce9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4423aa96cfda0606a089d920459f4a2011ea40b0f32680f729a72d0ff253c946a0e01251eb18e15c35e95813aa3df34fe8d99fe2f8dee1027041c858f2adc1be
|
|
7
|
+
data.tar.gz: 53a942a3af8f56f1a029777917a0198555355382837c91f5f754a2d8b73a9ada750d605c524fbc9fd0c544e35c527e1d240a1c078b3299258656980feffa11c7
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -803,7 +803,7 @@ struct timespec * make_timeout(VALUE duration, struct timespec * storage) {
|
|
|
803
803
|
return storage;
|
|
804
804
|
}
|
|
805
805
|
|
|
806
|
-
rb_raise(
|
|
806
|
+
rb_raise(rb_eArgError, "unable to convert timeout: %"PRIsVALUE, rb_inspect(duration));
|
|
807
807
|
}
|
|
808
808
|
|
|
809
809
|
static
|
|
@@ -816,7 +816,7 @@ struct timespec * make_timeout(VALUE duration, struct timespec * storage) {
|
|
|
816
816
|
return storage;
|
|
817
817
|
}
|
|
818
818
|
|
|
819
|
-
rb_raise(
|
|
819
|
+
rb_raise(rb_eArgError, "unable to convert timeout: %"PRIsVALUE, rb_inspect(duration));
|
|
820
820
|
}
|
|
821
821
|
|
|
822
822
|
static
|
|
@@ -918,7 +918,7 @@ struct __kernel_timespec * make_timeout(VALUE duration, struct __kernel_timespec
|
|
|
918
918
|
return storage;
|
|
919
919
|
}
|
|
920
920
|
|
|
921
|
-
rb_raise(
|
|
921
|
+
rb_raise(rb_eArgError, "unable to convert timeout: %"PRIsVALUE, rb_inspect(duration));
|
|
922
922
|
}
|
|
923
923
|
|
|
924
924
|
static
|
data/lib/io/event/version.rb
CHANGED
data/readme.md
CHANGED
|
@@ -6,7 +6,7 @@ Provides low level cross-platform primitives for constructing event loops, with
|
|
|
6
6
|
|
|
7
7
|
## Motivation
|
|
8
8
|
|
|
9
|
-
The initial proof-of-concept [Async](https://github.com/socketry/async) was built on [NIO4r](https://github.com/socketry/nio4r). It was perfectly acceptable and well tested in production, however being built on `libev` was a little bit limiting. I wanted to directly
|
|
9
|
+
The initial proof-of-concept [Async](https://github.com/socketry/async) was built on [NIO4r](https://github.com/socketry/nio4r). It was perfectly acceptable and well tested in production, however being built on `libev` was a little bit limiting. I wanted to directly build my fiber scheduler into the fabric of the event loop, which is what this gem exposes - it is specifically implemented to support building event loops beneath the fiber scheduler interface, providing an efficient C implementation of all the core operations.
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: io-event
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
@@ -44,7 +44,7 @@ cert_chain:
|
|
|
44
44
|
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
|
45
45
|
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
|
46
46
|
-----END CERTIFICATE-----
|
|
47
|
-
date: 2024-06-
|
|
47
|
+
date: 2024-06-12 00:00:00.000000000 Z
|
|
48
48
|
dependencies: []
|
|
49
49
|
description:
|
|
50
50
|
email:
|
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
102
|
version: '0'
|
|
103
103
|
requirements: []
|
|
104
|
-
rubygems_version: 3.5.
|
|
104
|
+
rubygems_version: 3.5.9
|
|
105
105
|
signing_key:
|
|
106
106
|
specification_version: 4
|
|
107
107
|
summary: An event loop.
|
metadata.gz.sig
CHANGED
|
Binary file
|