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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 416c5d206ae053bec9b5476cf6b09fdc0c1ac902219a855da4bb72e27e430338
4
- data.tar.gz: d843dadc2165a7402d7957eb8b9fb9e445f14d330bd173e3cde94d42bf61fb1c
3
+ metadata.gz: c36b15dff6b808be5cbae062c2f35f6950ebe6b2a7cf66259f39fd56c8377d71
4
+ data.tar.gz: 10d177145a5254091c8f4ce8fe8a859a174874d1c24e1ccf7b6418038511cb54
5
5
  SHA512:
6
- metadata.gz: 8fe6ed5d8c639441329955f8465217ba99ddf8619e0ebafa97ac23faba7730b6bbcc62689e0a46ba35adc183246c4599a7fe398bb55280651a24dba6ed249dab
7
- data.tar.gz: 93c55467b97c95a87627f5a1c8462164086536727a43cea4f5b87c6795e3a87cfb68289773ee88d33fa2c053b2e5b488df647dab72318aea94afebb496f4f300
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
- git_url: git://yhbt.net/kgio.git
4
- ml_url: https://yhbt.net/kgio-public/
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
- - nntp://news.public-inbox.org/inbox.comp.lang.ruby.kgio
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
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  GVF=GIT-VERSION-FILE
4
- DEF_VER=v2.11.3
4
+ DEF_VER=v2.11.4
5
5
 
6
6
  LF='
7
7
  '
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, code
27
- review, testing, documentation, user support or any other feedback. The
28
- {kgio mailing list}[mailto:kgio-public@yhbt.net] is the
29
- central coordination point for all user and developer feedback and bug
30
- reports.
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
@@ -127,7 +127,8 @@ publish_doc:
127
127
  -git set-file-times
128
128
  $(MAKE) doc
129
129
  $(MAKE) doc_gz
130
- $(RSYNC) -av doc/ $(RSYNC_DEST)/
130
+ $(RSYNC) -av doc/ $(RSYNC_DEST)/ \
131
+ --exclude index.html* --exclude created.rid*
131
132
  git ls-files | xargs touch
132
133
  endif
133
134
 
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.3
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: 2020-01-08 00:00:00.000000000 Z
11
+ date: 2021-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit