eventbox 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2cded1e660a5b8321b82e80dfec3bb02f66186d5e9befa33a9083773e67708a4
4
- data.tar.gz: a49d8755319a94fc72d67ffbbf8aee6c2f3da6c1c35f8530f0ea3e2bd4cfe003
3
+ metadata.gz: 5186173994e852e2d59faf420cc20a19ad2b3fc65ea245b55886a4b969d74d91
4
+ data.tar.gz: dbb48923f23bffb0c11932c6fc6be2f631fc61d34b280af7e62dff9607ef8d99
5
5
  SHA512:
6
- metadata.gz: 1566416c8c226a188e21e5d79e6dcc8ca663854fc87062bc7a4600656bf35c75d81c46226b8ba165962f7730e34161c215cf15d3a1b5529ec74947d4a2b14831
7
- data.tar.gz: 38f010998ef24d2b650264fcead255f905983948ecdbfd7c56afed59f1d36326ccc10015d6e6783fd8d54a757986be233fbe9fa31d25cd7795ed6a916e149bdc
6
+ metadata.gz: b97e111872741d718bd34b5b17b5f71a58cdc775f7b82dc7e4bb1c8e20bf9c711265623ac29762b4e088283d42ee4f8e8b787af6d1f2449e21f5b8156ca945b2
7
+ data.tar.gz: 614e3bb72609eb0f922949c1dafd0eefc6627a556c705f45dc7a8df6a4a7506fe476a836a09a9d3fe00c5650c20122d50023373e53e6adc345e79696fcb5e64f
checksums.yaml.gz.sig CHANGED
Binary file
data/.appveyor.yml CHANGED
@@ -1,4 +1,4 @@
1
- image: Visual Studio 2019
1
+ image: Visual Studio 2022
2
2
 
3
3
  build: off
4
4
 
@@ -10,9 +10,11 @@ install:
10
10
  - ps: |
11
11
  if ($env:RUBYDOWNLOAD -ne $null) {
12
12
  $(new-object net.webclient).DownloadFile("https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-head-$env:RUBYDOWNLOAD.exe", "$pwd/ruby-setup.exe")
13
- cmd /c ruby-setup.exe /verysilent /dir=C:/Ruby$env:ruby_version
13
+ cmd /c ruby-setup.exe /verysilent /currentuser /dir=C:/Ruby$env:ruby_version
14
14
  }
15
15
  - ruby --version
16
+ - ridk version
17
+ - ridk install 3
16
18
  - gem --version
17
19
  - gem install bundler --conservative
18
20
  - bundle install
@@ -24,7 +26,4 @@ environment:
24
26
  matrix:
25
27
  - ruby_version: "head"
26
28
  RUBYDOWNLOAD: x64
27
- - ruby_version: "head"
28
- RUBYDOWNLOAD: x86
29
- - ruby_version: "30-x64"
30
- - ruby_version: "30"
29
+ - ruby_version: "32"
@@ -0,0 +1,48 @@
1
+ name: CI
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ job_test:
7
+ name: CI
8
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ include:
12
+ - os: windows
13
+ ruby: "head"
14
+ - os: ubuntu
15
+ ruby: "head"
16
+ - os: ubuntu
17
+ ruby: "4.0"
18
+ - os: ubuntu
19
+ ruby: "3.2"
20
+ - os: ubuntu
21
+ ruby: "truffleruby"
22
+ NO_TIMING_TESTS: true
23
+ experimental: true
24
+ - os: ubuntu
25
+ ruby: "jruby"
26
+ - os: macos
27
+ ruby: "head"
28
+ NO_TIMING_TESTS: true
29
+
30
+ runs-on: ${{ matrix.os }}-latest
31
+ continue-on-error: ${{ matrix.experimental || false }}
32
+ env:
33
+ NO_TIMING_TESTS: ${{ matrix.NO_TIMING_TESTS }}
34
+
35
+ steps:
36
+
37
+ - uses: actions/checkout@v2
38
+ - name: Set up Ruby
39
+ uses: ruby/setup-ruby@v1
40
+ with:
41
+ ruby-version: ${{ matrix.ruby }}
42
+
43
+ - run: bundle install
44
+
45
+ - name: Run tests
46
+ env:
47
+ RUBYOPT: --verbose --enable-frozen-string-literal
48
+ run: bundle exec rake test TESTOPTS=-v
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ 1.0.1 / 2026-01-06
2
+ -------------------
3
+
4
+ Changed:
5
+ * Requires ruby-3.2 or newer.
6
+ * Use bind_call instead of bind.call . #9
7
+
8
+
1
9
  1.0.0 / 2021-07-07
2
10
  -------------------
3
11
 
data/Gemfile CHANGED
@@ -5,6 +5,15 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
5
5
  # Specify your gem's dependencies in eventbox.gemspec
6
6
  gemspec
7
7
 
8
+ group :development do
9
+ gem "bundler", ">= 1.16"
10
+ gem "rake", "~> 13.0"
11
+ gem "minitest", "~> 6.0"
12
+ gem "minitest-mock", "~> 5.0"
13
+ gem "minitest-hooks"
14
+ gem "yard", "~> 0.9"
15
+ end
16
+
8
17
  group :test do
9
18
  gem 'simplecov', require: false
10
19
  end
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
- [![Build Status Linux](https://travis-ci.com/larskanis/eventbox.svg?branch=master)](https://travis-ci.com/larskanis/eventbox)
2
- [![Build status Windows](https://ci.appveyor.com/api/projects/status/tq397g0gfke1mcud/branch/master?svg=true)](https://ci.appveyor.com/project/larskanis/eventbox/branch/master)
1
+ [![CI](https://github.com/larskanis/eventbox/actions/workflows/ci.yml/badge.svg)](https://github.com/larskanis/eventbox/actions/workflows/ci.yml)
2
+ [![CI status Windows](https://ci.appveyor.com/api/projects/status/tq397g0gfke1mcud/branch/master?svg=true)](https://ci.appveyor.com/project/larskanis/eventbox/branch/master)
3
3
 
4
4
  # Eventbox
5
5
 
@@ -22,7 +22,7 @@ An important task of Eventbox is to avoid race conditions through shared data.
22
22
  Such data races between event scope and external/action scope are avoided through **{Eventbox::Sanitizer filters} applied to all inputs and outputs**.
23
23
  That way {Eventbox} guarantees stable states while event processing without a need for any locks.
24
24
 
25
- * [API documentation](https://www.rubydoc.info/github/larskanis/eventbox/master)
25
+ * [API documentation](https://www.rubydoc.info/gems/eventbox)
26
26
 
27
27
 
28
28
  ## Requirements
@@ -85,7 +85,7 @@ end
85
85
  <a name="my_queue_image"></a>
86
86
  A picture describes it best:
87
87
 
88
- [![MyQueue calls](https://raw.github.com/larskanis/eventbox/master/docs/images/my_queue_calls.svg?sanitize=true)](https://www.rubydoc.info/github/larskanis/eventbox/master/file/README.md#my_queue_image)
88
+ [![MyQueue calls](https://raw.github.com/larskanis/eventbox/master/docs/images/my_queue_calls.svg?sanitize=true)](https://www.rubydoc.info/gems/eventbox/file/README.md#my_queue_image)
89
89
  {include:file:docs/my_queue_calls_github.md}
90
90
 
91
91
  Although there are no mutex or condition variables in use, the implementation is thread-safe.
@@ -134,7 +134,7 @@ It is recommended to work them through, in order to fully understand how Eventbo
134
134
  * {file:docs/server.md TCP server} - Understand how to startup and shutdown blocking actions and to combine several Eventbox classes to handle parallel connections.
135
135
  * {file:docs/threadpool.md Thread-pool} - Understand how parallel external requests can be serialized and scheduled.
136
136
 
137
- Seeing curly braces instead of links? Switch to the [API documentation](https://www.rubydoc.info/github/larskanis/eventbox/master).
137
+ Seeing curly braces instead of links? Switch to the [API documentation](https://www.rubydoc.info/gems/eventbox).
138
138
 
139
139
 
140
140
  ## Method types
@@ -169,7 +169,7 @@ They allow thread-safe access to instance variables.
169
169
  Beside {Eventbox.async_call async_call}, {Eventbox.sync_call sync_call} and {Eventbox.yield_call yield_call} methods it's possible to define plain `private` methods, since they are not accessible externally.
170
170
  However any plain `public` or `protected` methods within Eventbox classes are rejected.
171
171
 
172
- Seeing curly braces instead of links? Switch to the [API documentation](https://www.rubydoc.info/github/larskanis/eventbox/master).
172
+ Seeing curly braces instead of links? Switch to the [API documentation](https://www.rubydoc.info/gems/eventbox).
173
173
 
174
174
  ### Action Scope
175
175
 
@@ -292,7 +292,7 @@
292
292
  id="a1025"
293
293
  target=""
294
294
  transform="translate(-0.555625,-23.151042)"
295
- xlink:href="https://www.rubydoc.info/github/larskanis/eventbox/master/Eventbox/Sanitizer">
295
+ xlink:href="https://www.rubydoc.info/gems/eventbox/Eventbox/Sanitizer">
296
296
  <ellipse
297
297
  onclick=""
298
298
  transform="matrix(0.89625618,-0.44353677,0.47919017,0.8777111,0,0)"
@@ -314,7 +314,7 @@
314
314
  transform="translate(0,6.2970833)"
315
315
  id="a4631">
316
316
  <path
317
- onclick="https://www.rubydoc.info/github/larskanis/eventbox/master/Eventbox/Sanitizer"
317
+ onclick="https://www.rubydoc.info/gems/eventbox/Eventbox/Sanitizer"
318
318
  sodipodi:open="true"
319
319
  transform="matrix(0.92881568,0.37054207,-0.47054194,0.88237763,0,0)"
320
320
  d="m 114.76537,172.63952 a 5.2028461,8.8422928 0 0 1 -3.99824,-10.43402 5.2028461,8.8422928 0 0 1 6.10517,-6.88361 5.2028461,8.8422928 0 0 1 4.10216,10.31685 5.2028461,8.8422928 0 0 1 -6.03535,7.05921"
@@ -334,7 +334,7 @@
334
334
  id="a925"
335
335
  target="">
336
336
  <path
337
- onclick="https://www.rubydoc.info/github/larskanis/eventbox/master/Eventbox/Sanitizer"
337
+ onclick="https://www.rubydoc.info/gems/eventbox/Eventbox/Sanitizer"
338
338
  sodipodi:open="true"
339
339
  transform="matrix(0.8488041,0.52870748,-0.64396364,0.7650561,0,0)"
340
340
  d="m 247.74739,159.80509 a 4.7844305,9.6128368 0 0 1 -4.70978,9.68959 4.7844305,9.6128368 0 0 1 -4.85765,-9.39028 4.7844305,9.6128368 0 0 1 4.63728,-9.82976 4.7844305,9.6128368 0 0 1 4.92686,9.24357"
@@ -1 +1 @@
1
- [![MyQueue calls](https://raw.github.com/larskanis/eventbox/master/docs/images/my_queue_calls.svg?sanitize=true)](https://www.rubydoc.info/github/larskanis/eventbox/master/file/README.md#my_queue_image)
1
+ [![MyQueue calls](https://raw.github.com/larskanis/eventbox/master/docs/images/my_queue_calls.svg?sanitize=true)](https://www.rubydoc.info/gems/eventbox/file/README.md#my_queue_image)
data/eventbox.gemspec CHANGED
@@ -21,12 +21,6 @@ Gem::Specification.new do |spec|
21
21
  spec.bindir = "exe"
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
23
  spec.require_paths = ["lib"]
24
- spec.required_ruby_version = ">= 3.0", "< 4.0"
24
+ spec.required_ruby_version = ">= 3.2"
25
25
  spec.metadata["yard.run"] = "yri" # use "yard" to build full HTML docs.
26
-
27
- spec.add_development_dependency "bundler", ">= 1.16", "< 3"
28
- spec.add_development_dependency "rake", "~> 13.0"
29
- spec.add_development_dependency "minitest", "~> 5.0"
30
- spec.add_development_dependency "minitest-hooks"
31
- spec.add_development_dependency "yard", "~> 0.9"
32
26
  end
@@ -51,7 +51,7 @@ class Eventbox
51
51
  if @__event_loop__.event_scope?
52
52
  # Use the correct method within the class hierarchy, instead of just self.send(*args).
53
53
  # Otherwise super() would start an infinite recursion.
54
- unbound_method.bind(eventbox).call(*args, **kwargs, &cb)
54
+ unbound_method.bind_call(eventbox, *args, **kwargs, &cb)
55
55
  else
56
56
  @__event_loop__.async_call(eventbox, name, args, kwargs, cb, wrapper)
57
57
  end
@@ -79,7 +79,7 @@ class Eventbox
79
79
  wrapper = ArgumentWrapper.build(unbound_method, name)
80
80
  with_block_or_def(name, block) do |*args, **kwargs, &cb|
81
81
  if @__event_loop__.event_scope?
82
- unbound_method.bind(eventbox).call(*args, **kwargs, &cb)
82
+ unbound_method.bind_call(eventbox, *args, **kwargs, &cb)
83
83
  else
84
84
  answer_queue = Queue.new
85
85
  sel = @__event_loop__.sync_call(eventbox, name, args, kwargs, cb, answer_queue, wrapper)
@@ -1,5 +1,5 @@
1
1
  # frozen-string-literal: true
2
2
 
3
3
  class Eventbox
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
data.tar.gz.sig CHANGED
@@ -1 +1 @@
1
- w( ��:��}�/�Vj{#�X��d�{���'u�~��q�lc;iAMVJ��7t V?��^Gd��m��� |���
1
+ HV��,����[X��ٙ�R�,�zs>��� U�pg�c�����2��"y^�Pj!�܏H%�6n}��� F�»o3�>/�2 �Z"�����S�aͲb�0��p�ҍ�
metadata CHANGED
@@ -1,112 +1,39 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eventbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lars Kanis
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain:
11
10
  - |
12
11
  -----BEGIN CERTIFICATE-----
13
- MIIDLjCCAhagAwIBAgIBCTANBgkqhkiG9w0BAQsFADA9MQ4wDAYDVQQDDAVrYW5p
14
- czEXMBUGCgmSJomT8ixkARkWB2NvbWNhcmQxEjAQBgoJkiaJk/IsZAEZFgJkZTAe
15
- Fw0yMTA0MDcxMzQzNTZaFw0yMjA0MDcxMzQzNTZaMD0xDjAMBgNVBAMMBWthbmlz
16
- MRcwFQYKCZImiZPyLGQBGRYHY29tY2FyZDESMBAGCgmSJomT8ixkARkWAmRlMIIB
17
- IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApop+rNmg35bzRugZ21VMGqI6
18
- HGzPLO4VHYncWn/xmgPU/ZMcZdfj6MzIaZJ/czXyt4eHpBk1r8QOV3gBXnRXEjVW
19
- 9xi+EdVOkTV2/AVFKThcbTAQGiF/bT1n2M+B1GTybRzMg6hyhOJeGPqIhLfJEpxn
20
- lJi4+ENAVT4MpqHEAGB8yFoPC0GqiOHQsdHxQV3P3c2OZqG+yJey74QtwA2tLcLn
21
- Q53c63+VLGsOjODl1yPn/2ejyq8qWu6ahfTxiIlSar2UbwtaQGBDFdb2CXgEufXT
22
- L7oaPxlmj+Q2oLOfOnInd2Oxop59HoJCQPsg8f921J43NCQGA8VHK6paxIRDLQID
23
- AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUvgTdT7fe
24
- x17ugO3IOsjEJwW7KP4wDQYJKoZIhvcNAQELBQADggEBAGCQhS4TBqUG1bSY5gw5
25
- emj2GNePHFNlXTZ/W0/7FlnXQz/LyBZeYmy4AIHcdY0w9xsu3bPNGk8kLBkHgK3Y
26
- l/yWiUK0NYRI3K3yI2EoTfrHPDT8XIgBPeUUGv5Nje+SUYMQWsfYWKo3+vLEG64a
27
- n1xP+1+g2Za39WCS5LwnDWMiIk47NnxR9yXErKd0Iau/Q/IarYsHFX6kWWmlMoln
28
- W1lMomCcOJFwIPnsy6aqq7YfS0YcqyHjcvs1h5k3zPaIRWhoPlQivniMVMa3Txh+
29
- NEF/4atY64rruzkyfxGEcrFFOHJIkWnWQjRGaiZdgULxf7ira2gEFvV/ZtamqJWF
30
- c+I=
12
+ MIIEBDCCAmygAwIBAgIBBDANBgkqhkiG9w0BAQsFADAoMSYwJAYDVQQDDB1sYXJz
13
+ L0RDPWdyZWl6LXJlaW5zZG9yZi9EQz1kZTAeFw0yNjAxMDUxMTE5MzRaFw0yNzAx
14
+ MDUxMTE5MzRaMCgxJjAkBgNVBAMMHWxhcnMvREM9Z3JlaXotcmVpbnNkb3JmL0RD
15
+ PWRlMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAwum6Y1KznfpzXOT/
16
+ mZgJTBbxZuuZF49Fq3K0WA67YBzNlDv95qzSp7V/7Ek3NCcnT7G+2kSuhNo1FhdN
17
+ eSDO/moYebZNAcu3iqLsuzuULXPLuoU0GsMnVMqV9DZPh7cQHE5EBZ7hlzDBK7k/
18
+ 8nBMvR0mHo77kIkapHc26UzVq/G0nKLfDsIHXVylto3PjzOumjG6GhmFN4r3cP6e
19
+ SDfl1FSeRYVpt4kmQULz/zdSaOH3AjAq7PM2Z91iGwQvoUXMANH2v89OWjQO/NHe
20
+ JMNDFsmHK/6Ji4Kk48Z3TyscHQnipAID5GhS1oD21/WePdj7GhmbF5gBzkV5uepd
21
+ eJQPgWGwrQW/Z2oPjRuJrRofzWfrMWqbOahj9uth6WSxhNexUtbjk6P8emmXOJi5
22
+ chQPnWX+N3Gj+jjYxqTFdwT7Mj3pv1VHa+aNUbqSPpvJeDyxRIuo9hvzDaBHb/Cg
23
+ 9qRVcm8a96n4t7y2lrX1oookY6bkBaxWOMtWlqIprq8JZXM9AgMBAAGjOTA3MAkG
24
+ A1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQ4h1tIyvdUWtMI739xMzTR
25
+ 7EfMFzANBgkqhkiG9w0BAQsFAAOCAYEAg/1LuXN3X8xwHVnhRvmBCZYkNErko40y
26
+ juq/qPF9vkPGxLEGaeZF1rv/obTs5SgIGEUkWdRsOl3F6bQN4MYUFlN/n6rPx19g
27
+ CqUMkmRtuFD+9EFBI4twoF2IJS0pYr9tkjUq8mb0VXblvfbEEUf460BJmuBXZTc6
28
+ OoLQHxjhhqhKBoP4lHXg/OMK9dnGn8+5DoKcsyWQvqq/GdK8pi4E47M/egzw54Go
29
+ g+oeyGDsNKOQlnIA9gbyPpExD1+akJ4v88T8jOUnsOkhBBUkpSktC2QmEYIU5e9j
30
+ N7muw6O5Bz3CQuSWIEjj9mMUS2fEEfq2km6zO5vs5eD6TdFnt8AC/HlOrPaxGcUX
31
+ Hjw/K7ZTvZLEb4awRijdy4wx3OlL9FAyZPjYOh8TdJrLl076c7GyimAkgnc8BrL5
32
+ g1vGc759o2t3KNnlUg8VwqkhFJp4gCko1QO/8Io5hPQZOvJw8dmqNiiiHqaDupfl
33
+ CI4mk2K8yQa8xtQ/RmFZxYS5XbHhDJCw
31
34
  -----END CERTIFICATE-----
32
- date: 2021-07-07 00:00:00.000000000 Z
33
- dependencies:
34
- - !ruby/object:Gem::Dependency
35
- name: bundler
36
- requirement: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '1.16'
41
- - - "<"
42
- - !ruby/object:Gem::Version
43
- version: '3'
44
- type: :development
45
- prerelease: false
46
- version_requirements: !ruby/object:Gem::Requirement
47
- requirements:
48
- - - ">="
49
- - !ruby/object:Gem::Version
50
- version: '1.16'
51
- - - "<"
52
- - !ruby/object:Gem::Version
53
- version: '3'
54
- - !ruby/object:Gem::Dependency
55
- name: rake
56
- requirement: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - "~>"
59
- - !ruby/object:Gem::Version
60
- version: '13.0'
61
- type: :development
62
- prerelease: false
63
- version_requirements: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: '13.0'
68
- - !ruby/object:Gem::Dependency
69
- name: minitest
70
- requirement: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: '5.0'
75
- type: :development
76
- prerelease: false
77
- version_requirements: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - "~>"
80
- - !ruby/object:Gem::Version
81
- version: '5.0'
82
- - !ruby/object:Gem::Dependency
83
- name: minitest-hooks
84
- requirement: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- version: '0'
89
- type: :development
90
- prerelease: false
91
- version_requirements: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - ">="
94
- - !ruby/object:Gem::Version
95
- version: '0'
96
- - !ruby/object:Gem::Dependency
97
- name: yard
98
- requirement: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - "~>"
101
- - !ruby/object:Gem::Version
102
- version: '0.9'
103
- type: :development
104
- prerelease: false
105
- version_requirements: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - "~>"
108
- - !ruby/object:Gem::Version
109
- version: '0.9'
35
+ date: 1980-01-02 00:00:00.000000000 Z
36
+ dependencies: []
110
37
  description: |-
111
38
  Eventbox is a model of concurrent computation that is used to build thread-safe objects with arbitrary interfaces.
112
39
  It is [kind of advancement](#comparison-threading-abstractions) of the well known [actor model](https://en.wikipedia.org/wiki/Actor_model) leveraging the possibilities of the ruby language.
@@ -118,6 +45,7 @@ extensions: []
118
45
  extra_rdoc_files: []
119
46
  files:
120
47
  - ".appveyor.yml"
48
+ - ".github/workflows/ci.yml"
121
49
  - ".gitignore"
122
50
  - ".travis.yml"
123
51
  - ".yardopts"
@@ -151,7 +79,6 @@ licenses:
151
79
  - MIT
152
80
  metadata:
153
81
  yard.run: yri
154
- post_install_message:
155
82
  rdoc_options: []
156
83
  require_paths:
157
84
  - lib
@@ -159,18 +86,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
159
86
  requirements:
160
87
  - - ">="
161
88
  - !ruby/object:Gem::Version
162
- version: '3.0'
163
- - - "<"
164
- - !ruby/object:Gem::Version
165
- version: '4.0'
89
+ version: '3.2'
166
90
  required_rubygems_version: !ruby/object:Gem::Requirement
167
91
  requirements:
168
92
  - - ">="
169
93
  - !ruby/object:Gem::Version
170
94
  version: '0'
171
95
  requirements: []
172
- rubygems_version: 3.3.0.dev
173
- signing_key:
96
+ rubygems_version: 4.0.3
174
97
  specification_version: 4
175
98
  summary: Manage multithreading with the safety of event based programming
176
99
  test_files: []
metadata.gz.sig CHANGED
Binary file