kgio 2.11.3 → 2.11.4
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/.olddoc.yml +8 -3
- data/GIT-VERSION-GEN +1 -1
- data/HACKING +6 -5
- data/ext/kgio/accept.c +3 -0
- data/pkg.mk +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c36b15dff6b808be5cbae062c2f35f6950ebe6b2a7cf66259f39fd56c8377d71
|
|
4
|
+
data.tar.gz: 10d177145a5254091c8f4ce8fe8a859a174874d1c24e1ccf7b6418038511cb54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9baa356925aefef55424e43d3eb84bc604cfb741bf78768cdce3ad22af620919c60c625ede9053a6a1e2a71dacbca83cfb26171b664bdfbf869ef699cac90ffa
|
|
7
|
+
data.tar.gz: f0a9c31c444ea3cb35fc8ca268b99766196b9fa056833ee3134afe871595da5a152f635b26c5f646a79c815b53fb9a99f6e64865ab7f2e2cd79e9bd9f6423aff
|
data/.olddoc.yml
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
cgit_url: https://yhbt.net/kgio.git
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
ml_url:
|
|
4
|
+
- https://yhbt.net/kgio-public/
|
|
5
|
+
- http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/kgio-public/
|
|
5
6
|
rdoc_url: https://yhbt.net/kgio/
|
|
6
7
|
public_email: kgio-public@yhbt.net
|
|
7
8
|
noindex:
|
|
8
9
|
- LATEST
|
|
9
10
|
- TODO
|
|
10
11
|
nntp_url:
|
|
11
|
-
|
|
12
|
+
- nntp://news.public-inbox.org/inbox.comp.lang.ruby.kgio
|
|
13
|
+
- nntp://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/inbox.comp.lang.ruby.kgio
|
|
14
|
+
source_code:
|
|
15
|
+
- git clone https://yhbt.net/kgio.git
|
|
16
|
+
- torsocks git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/kgio.git
|
data/GIT-VERSION-GEN
CHANGED
data/HACKING
CHANGED
|
@@ -23,11 +23,12 @@ characters wide) and NOT the indentation style of Matz Ruby.
|
|
|
23
23
|
|
|
24
24
|
== Contributing
|
|
25
25
|
|
|
26
|
-
Contributions are welcome in the form of patches, pull requests
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
26
|
+
Contributions are welcome in the form of patches, pull requests
|
|
27
|
+
(format email with "git request-pull"), code review, testing,
|
|
28
|
+
documentation, user support or any other feedback.
|
|
29
|
+
<mailto:kgio-public@yhbt.net> <https://yhbt.net/kgio-public/> is the
|
|
30
|
+
current coordination point for all user and developer feedback and
|
|
31
|
+
bug reports (domain is subject to change since ICANN cannot be trusted).
|
|
31
32
|
|
|
32
33
|
=== Submitting Patches
|
|
33
34
|
|
data/ext/kgio/accept.c
CHANGED
|
@@ -498,9 +498,12 @@ void init_kgio_accept(void)
|
|
|
498
498
|
rb_define_const(mKgio, "SOCK_CLOEXEC", INT2NUM(SOCK_CLOEXEC));
|
|
499
499
|
|
|
500
500
|
localhost = rb_const_get(mKgio, rb_intern("LOCALHOST"));
|
|
501
|
+
rb_gc_register_mark_object(localhost);
|
|
501
502
|
cKgio_Socket = rb_const_get(mKgio, rb_intern("Socket"));
|
|
503
|
+
rb_gc_register_mark_object(cKgio_Socket);
|
|
502
504
|
cClientSocket = cKgio_Socket;
|
|
503
505
|
mSocketMethods = rb_const_get(mKgio, rb_intern("SocketMethods"));
|
|
506
|
+
rb_gc_register_mark_object(mSocketMethods);
|
|
504
507
|
|
|
505
508
|
rb_define_method(mSocketMethods, "kgio_addr!", addr_bang, 0);
|
|
506
509
|
|
data/pkg.mk
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kgio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.11.
|
|
4
|
+
version: 2.11.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kgio hackers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-05-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-unit
|