iodine 0.7.43 → 0.7.46
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/.github/ISSUE_TEMPLATE/bug_report.md +1 -1
- data/.gitignore +1 -0
- data/CHANGELOG.md +18 -0
- data/examples/etag.ru +16 -0
- data/ext/iodine/extconf.rb +21 -16
- data/ext/iodine/fio.c +1108 -162
- data/ext/iodine/fio.h +49 -13
- data/ext/iodine/fio_cli.c +1 -1
- data/ext/iodine/fio_tls_missing.c +8 -0
- data/ext/iodine/fio_tls_openssl.c +8 -0
- data/ext/iodine/fio_tmpfile.h +13 -1
- data/ext/iodine/fiobj_data.c +6 -4
- data/ext/iodine/fiobj_data.h +2 -1
- data/ext/iodine/fiobj_hash.c +32 -6
- data/ext/iodine/fiobj_mustache.c +9 -0
- data/ext/iodine/fiobj_numbers.c +86 -8
- data/ext/iodine/fiobj_str.c +24 -11
- data/ext/iodine/fiobject.c +1 -1
- data/ext/iodine/fiobject.h +5 -3
- data/ext/iodine/http.c +75 -32
- data/ext/iodine/http1.c +2 -1
- data/ext/iodine/http1_parser.h +1065 -103
- data/ext/iodine/http_internal.c +1 -0
- data/ext/iodine/http_internal.h +4 -2
- data/ext/iodine/iodine.c +64 -1
- data/ext/iodine/iodine.h +2 -0
- data/ext/iodine/iodine_caller.c +48 -8
- data/ext/iodine/iodine_connection.c +4 -0
- data/ext/iodine/iodine_http.c +28 -2
- data/ext/iodine/iodine_rack_io.c +15 -2
- data/ext/iodine/iodine_tcp.c +14 -0
- data/ext/iodine/iodine_tls.c +8 -0
- data/ext/iodine/mustache_parser.h +4 -0
- data/ext/iodine/redis_engine.c +14 -11
- data/ext/iodine/websockets.c +7 -3
- data/iodine.gemspec +5 -4
- data/lib/iodine/version.rb +1 -1
- metadata +15 -13
metadata
CHANGED
@@ -1,35 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iodine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.46
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boaz Segev
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '12.0'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '14.0'
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - "
|
27
|
+
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '12.0'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '14.0'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: minitest
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -112,7 +112,7 @@ dependencies:
|
|
112
112
|
version: '2.0'
|
113
113
|
description: A fast HTTP / Websocket Server with built-in Pub/Sub support (with or
|
114
114
|
without Redis), static file support and many other features, optimized for Ruby
|
115
|
-
MRI on Linux / BSD / macOS
|
115
|
+
MRI on Linux / BSD / macOS / Windows
|
116
116
|
email:
|
117
117
|
- bo@plezi.io
|
118
118
|
executables:
|
@@ -145,6 +145,7 @@ files:
|
|
145
145
|
- examples/async_task.ru
|
146
146
|
- examples/config.ru
|
147
147
|
- examples/echo.ru
|
148
|
+
- examples/etag.ru
|
148
149
|
- examples/hello.ru
|
149
150
|
- examples/pubsub_engine.ru
|
150
151
|
- examples/redis.ru
|
@@ -244,7 +245,7 @@ licenses:
|
|
244
245
|
metadata:
|
245
246
|
allowed_push_host: https://rubygems.org
|
246
247
|
post_install_message: |-
|
247
|
-
Thank you for installing Iodine 0.7.
|
248
|
+
Thank you for installing Iodine 0.7.46.
|
248
249
|
Remember: if iodine supports your business, it's only fair to give value back (code contributions / donations).
|
249
250
|
rdoc_options: []
|
250
251
|
require_paths:
|
@@ -265,10 +266,11 @@ requirements:
|
|
265
266
|
- An updated C compiler.
|
266
267
|
- Ruby >= 2.3.8 (Ruby EOL).
|
267
268
|
- Ruby >= 2.5.0 recommended.
|
268
|
-
- TLS requires OpenSSL >= 1.1.0
|
269
|
-
|
270
|
-
|
269
|
+
- TLS requires OpenSSL >= 1.1.0.
|
270
|
+
- Or Windows with Ruby >= 3.0.0 build with MingW and MingW as compiler.
|
271
|
+
rubygems_version: 3.2.32
|
272
|
+
signing_key:
|
271
273
|
specification_version: 4
|
272
274
|
summary: iodine - a fast HTTP / Websocket Server with Pub/Sub support, optimized for
|
273
|
-
Ruby MRI on Linux / BSD
|
275
|
+
Ruby MRI on Linux / BSD / Windows
|
274
276
|
test_files: []
|