core-async 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -7
- data/lib/core/async/scheduler.rb +2 -2
- data/lib/core/async/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a45f1e23c90728b84f03adc1ce404f0d0a23815a578938eac7333abc5bb15fa
|
4
|
+
data.tar.gz: 3ecba0f38a329f9386592524d1e4a2b7205d2cdcf406f1db6b5c73539a6acc08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6df815035ce9b11a917bde168efb516c074e8bb21d4840a45acb38be147946fe1d78aeaf0f18880e62080c6e400fb4b04165e0045382f954ff0b18fad31c9a3
|
7
|
+
data.tar.gz: 9016af74700535905f703fccb8cdc89dc411a2298b2eb8298b3faa44a83f8337ef8bb81bf8cb80536ef643752fd1d54f206c5084cfe2beb90798ba563c510e61
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,3 @@
|
|
1
|
-
## [v0.10.0](https://github.com/metabahn/corerb/releases/tag/2021-11-02)
|
2
|
-
|
3
|
-
*released on 2021-11-02*
|
4
|
-
|
5
|
-
* `chg` [#97](https://github.com/metabahn/corerb/pull/97) Designate internal state with leading and trailing double underscores ([bryanp](https://github.com/bryanp))
|
6
|
-
* `chg` [#95](https://github.com/metabahn/corerb/pull/95) Change the approach to shutting down the scheduler on interrupt ([bryanp](https://github.com/bryanp))
|
7
|
-
|
8
1
|
## [v0.9.0](https://github.com/metabahn/corerb/releases/tag/2021-10-24)
|
9
2
|
|
10
3
|
*released on 2021-10-24*
|
@@ -77,6 +70,20 @@
|
|
77
70
|
* `add` [#10](https://github.com/metabahn/corerb/pull/10) Add a pattern for making a call explicitly async ([bryanp](https://github.com/bryanp))
|
78
71
|
* `add` [#9](https://github.com/metabahn/corerb/pull/9) Introduce async futures ([bryanp](https://github.com/bryanp))
|
79
72
|
|
73
|
+
## [v0.10.1](https://github.com/metabahn/corerb/releases/tag/2022-01-13)
|
74
|
+
|
75
|
+
*released on 2022-01-13*
|
76
|
+
|
77
|
+
* `dep` [#121](https://github.com/metabahn/corerb/pull/121) Update io-event dependency ([bryanp](https://github.com/bryanp))
|
78
|
+
* `chg` [#112](https://github.com/metabahn/corerb/pull/112) Point core-async to the new io-event library ([bryanp](https://github.com/bryanp))
|
79
|
+
|
80
|
+
## [v0.10.0](https://github.com/metabahn/corerb/releases/tag/2021-11-02)
|
81
|
+
|
82
|
+
*released on 2021-11-02*
|
83
|
+
|
84
|
+
* `chg` [#97](https://github.com/metabahn/corerb/pull/97) Designate internal state with leading and trailing double underscores ([bryanp](https://github.com/bryanp))
|
85
|
+
* `chg` [#95](https://github.com/metabahn/corerb/pull/95) Change the approach to shutting down the scheduler on interrupt ([bryanp](https://github.com/bryanp))
|
86
|
+
|
80
87
|
## [v0.1.0](https://github.com/metabahn/corerb/releases/tag/2021-02-11)
|
81
88
|
|
82
89
|
*released on 2021-02-11*
|
data/lib/core/async/scheduler.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require "event"
|
4
3
|
require "fiber"
|
4
|
+
require "io/event"
|
5
5
|
require "timers/group"
|
6
6
|
require "is/inspectable"
|
7
7
|
|
@@ -37,7 +37,7 @@ module Core
|
|
37
37
|
def_delegator :@selector, :resume
|
38
38
|
|
39
39
|
def initialize
|
40
|
-
@selector = Event::Selector.new(Fiber.current)
|
40
|
+
@selector = IO::Event::Selector.new(Fiber.current)
|
41
41
|
@timers = Timers::Group.new
|
42
42
|
@closed = false
|
43
43
|
@running = false
|
data/lib/core/async/version.rb
CHANGED
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: core-async
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bryan Powell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: event
|
14
|
+
name: io-event
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
94
|
- !ruby/object:Gem::Version
|
95
95
|
version: '0'
|
96
96
|
requirements: []
|
97
|
-
rubygems_version: 3.
|
97
|
+
rubygems_version: 3.3.3
|
98
98
|
signing_key:
|
99
99
|
specification_version: 4
|
100
100
|
summary: Makes Ruby objects async-aware.
|