raktr 0.1.0 → 0.1.2
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
- data/lib/raktr/tasks.rb +1 -1
- data/lib/raktr/version.rb +1 -1
- metadata +45 -34
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 50cc0375b1a81fee01b5724fcba399e92a92d58b477535850a185588f0c4e87d
|
|
4
|
+
data.tar.gz: ed3a6bf0fb7a15e23b828a99b891698efdb1088ca8b7bddcaf71cf23a62356c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bdb91cab1f79e94b96342064140a57d5c58783f673502a55d864d1f934a762610dbe99a1a7ceff562eac8d57952c89b30b0cb7b1748b1271fb73f2570a57eba
|
|
7
|
+
data.tar.gz: 3ef7f79b45fa781323792e5420dfb4ed0a2f511b1fc51f6f8b329b799e5137645a9d3b2df9c81d55b245522064c87d983a0dedd721ee48177a0752ee162a4562
|
data/lib/raktr/tasks.rb
CHANGED
data/lib/raktr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,28 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: raktr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tasos Laskos
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
12
|
-
dependencies:
|
|
10
|
+
date: 2025-12-24 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: mutex_m
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0'
|
|
13
26
|
description: |2
|
|
14
27
|
Raktr is a simple, lightweight, pure-Ruby implementation of the Reactor
|
|
15
28
|
pattern, mainly focused on network connections -- and less so on generic tasks.
|
|
@@ -17,9 +30,9 @@ email: tasos.laskos@gmail.com
|
|
|
17
30
|
executables: []
|
|
18
31
|
extensions: []
|
|
19
32
|
extra_rdoc_files:
|
|
20
|
-
- README.md
|
|
21
|
-
- LICENSE.md
|
|
22
33
|
- CHANGELOG.md
|
|
34
|
+
- LICENSE.md
|
|
35
|
+
- README.md
|
|
23
36
|
files:
|
|
24
37
|
- CHANGELOG.md
|
|
25
38
|
- LICENSE.md
|
|
@@ -84,7 +97,6 @@ homepage: https://github.com/qadron/raktr
|
|
|
84
97
|
licenses:
|
|
85
98
|
- MPL v2
|
|
86
99
|
metadata: {}
|
|
87
|
-
post_install_message:
|
|
88
100
|
rdoc_options:
|
|
89
101
|
- "--charset=UTF-8"
|
|
90
102
|
require_paths:
|
|
@@ -100,48 +112,47 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
100
112
|
- !ruby/object:Gem::Version
|
|
101
113
|
version: '0'
|
|
102
114
|
requirements: []
|
|
103
|
-
rubygems_version: 3.
|
|
104
|
-
signing_key:
|
|
115
|
+
rubygems_version: 3.6.9
|
|
105
116
|
specification_version: 4
|
|
106
117
|
summary: A pure-Ruby implementation of the Reactor pattern.
|
|
107
118
|
test_files:
|
|
108
|
-
- spec/
|
|
109
|
-
- spec/raktr/
|
|
110
|
-
- spec/raktr/
|
|
119
|
+
- spec/raktr/connection/tls_spec.rb
|
|
120
|
+
- spec/raktr/connection_spec.rb
|
|
121
|
+
- spec/raktr/iterator_spec.rb
|
|
122
|
+
- spec/raktr/queue_spec.rb
|
|
111
123
|
- spec/raktr/tasks/base.rb
|
|
112
|
-
- spec/raktr/tasks/
|
|
124
|
+
- spec/raktr/tasks/delayed_spec.rb
|
|
113
125
|
- spec/raktr/tasks/one_off_spec.rb
|
|
126
|
+
- spec/raktr/tasks/periodic_spec.rb
|
|
127
|
+
- spec/raktr/tasks/persistent_spec.rb
|
|
114
128
|
- spec/raktr/tasks_spec.rb
|
|
115
|
-
- spec/
|
|
116
|
-
- spec/
|
|
117
|
-
- spec/
|
|
118
|
-
- spec/
|
|
129
|
+
- spec/raktr_spec.rb
|
|
130
|
+
- spec/raktr_tls_spec.rb
|
|
131
|
+
- spec/spec_helper.rb
|
|
132
|
+
- spec/support/fixtures/handlers/echo_client.rb
|
|
119
133
|
- spec/support/fixtures/handlers/echo_client_tls.rb
|
|
120
|
-
- spec/support/fixtures/handlers/echo_server_tls.rb
|
|
121
134
|
- spec/support/fixtures/handlers/echo_server.rb
|
|
122
|
-
- spec/support/fixtures/handlers/
|
|
135
|
+
- spec/support/fixtures/handlers/echo_server_tls.rb
|
|
123
136
|
- spec/support/fixtures/pems/ca-cert.pem
|
|
137
|
+
- spec/support/fixtures/pems/ca-key.pem
|
|
124
138
|
- spec/support/fixtures/pems/client/cert.pem
|
|
125
|
-
- spec/support/fixtures/pems/client/pub.pem
|
|
126
|
-
- spec/support/fixtures/pems/client/key.pem
|
|
127
139
|
- spec/support/fixtures/pems/client/foo-cert.pem
|
|
128
140
|
- spec/support/fixtures/pems/client/foo-key.pem
|
|
129
|
-
- spec/support/fixtures/pems/
|
|
141
|
+
- spec/support/fixtures/pems/client/key.pem
|
|
142
|
+
- spec/support/fixtures/pems/client/pub.pem
|
|
143
|
+
- spec/support/fixtures/pems/generate-tls-certs.sh
|
|
130
144
|
- spec/support/fixtures/pems/server/cert.pem
|
|
131
|
-
- spec/support/fixtures/pems/server/pub.pem
|
|
132
145
|
- spec/support/fixtures/pems/server/key.pem
|
|
133
|
-
- spec/support/fixtures/pems/
|
|
134
|
-
- spec/support/
|
|
146
|
+
- spec/support/fixtures/pems/server/pub.pem
|
|
147
|
+
- spec/support/helpers/paths.rb
|
|
148
|
+
- spec/support/helpers/utilities.rb
|
|
149
|
+
- spec/support/lib/server_option_parser.rb
|
|
150
|
+
- spec/support/lib/servers.rb
|
|
151
|
+
- spec/support/lib/servers/runner.rb
|
|
135
152
|
- spec/support/servers/echo.rb
|
|
136
|
-
- spec/support/servers/echo_unix_tls.rb
|
|
137
153
|
- spec/support/servers/echo_tls.rb
|
|
138
|
-
- spec/support/
|
|
139
|
-
- spec/support/
|
|
140
|
-
- spec/support/
|
|
154
|
+
- spec/support/servers/echo_unix.rb
|
|
155
|
+
- spec/support/servers/echo_unix_tls.rb
|
|
156
|
+
- spec/support/shared/connection.rb
|
|
141
157
|
- spec/support/shared/raktr.rb
|
|
142
158
|
- spec/support/shared/task.rb
|
|
143
|
-
- spec/support/shared/connection.rb
|
|
144
|
-
- spec/support/helpers/utilities.rb
|
|
145
|
-
- spec/support/helpers/paths.rb
|
|
146
|
-
- spec/spec_helper.rb
|
|
147
|
-
- spec/raktr_tls_spec.rb
|