rage-iodine 3.1.0 → 3.2.0
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/CHANGELOG.md +4 -0
- data/ext/iodine/iodine_store.c +3 -4
- data/lib/iodine/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e0cf25032c21b2f527b8692bfead0da142cecc0bc625eea36da5a45046978ef
|
4
|
+
data.tar.gz: 512d45f660c336e8b33dd237fce1eec816828039a4139b71c505b318ecf37ef6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82b018d7b9d1b7a3ce6facec12f22e27b1a3699a093571240ccaa95f98985cbf89a88a68821354eb5f5c3deb268f177c990afd2d396c6d776902dbafbcff96c9
|
7
|
+
data.tar.gz: 60a58204b498adc19204793c6366168732718393fa8d3cdd49788bc94ae2d6c2a972d912ed51a22b16e24e48850fe05d11cdfb6c5d0839340b7533719267cc3d
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ Please notice that this change log contains changes for upcoming releases as wel
|
|
6
6
|
|
7
7
|
## Changes:
|
8
8
|
|
9
|
+
#### Change log v.3.2.0 (2024-07-15)
|
10
|
+
|
11
|
+
**Update**: Explicitly undefine the alloc function on IodineObjectStorage.
|
12
|
+
|
9
13
|
#### Change log v.3.1.0 (2024-05-01)
|
10
14
|
|
11
15
|
**Update**: Implement graceful shutdown.
|
data/ext/iodine/iodine_store.c
CHANGED
@@ -131,10 +131,9 @@ struct IodineStorage_s IodineStore = {
|
|
131
131
|
/** Initializes the storage unit for first use. */
|
132
132
|
void iodine_storage_init(void) {
|
133
133
|
fio_store_capa_require(&iodine_storage, 512);
|
134
|
-
VALUE tmp =
|
135
|
-
|
136
|
-
VALUE storage_obj =
|
137
|
-
TypedData_Wrap_Struct(tmp, &storage_type_struct, &iodine_storage);
|
134
|
+
VALUE tmp = rb_define_class_under(rb_cObject, "IodineObjectStorage", rb_cObject);
|
135
|
+
rb_undef_alloc_func(tmp);
|
136
|
+
VALUE storage_obj = TypedData_Wrap_Struct(tmp, &storage_type_struct, &iodine_storage);
|
138
137
|
// rb_global_variable(&iodine_storage_obj);
|
139
138
|
rb_ivar_set(IodineModule, rb_intern2("storage", 7), storage_obj);
|
140
139
|
rb_define_module_function(IodineBaseModule, "db_print_protected_objects",
|
data/lib/iodine/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rage-iodine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boaz Segev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -274,7 +274,7 @@ requirements:
|
|
274
274
|
- Ruby >= 2.5.0 recommended.
|
275
275
|
- TLS requires OpenSSL >= 1.1.0.
|
276
276
|
- Or Windows with Ruby >= 3.0.0 build with MingW and MingW as compiler.
|
277
|
-
rubygems_version: 3.
|
277
|
+
rubygems_version: 3.5.9
|
278
278
|
signing_key:
|
279
279
|
specification_version: 4
|
280
280
|
summary: iodine - a fast HTTP / Websocket Server with Pub/Sub support, optimized for
|