History log of /unit/src/ruby/nxt_ruby_stream_io.c (Results 1 – 8 of 8)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 2093:b82e9e5bf520 13-May-2022 Zhidao HONG

Ruby: added stream IO "close" required by Rack specification.

This closes #654 issue on Github.


Revision tags: 1.26.1-1, 1.26.1, 1.26.0-1, 1.26.0, 1.25.0-1, 1.25.0, 1.24.0-1, 1.24.0
# 1870:6a68fb236f5b 18-May-2021 Oisin Canty

Ruby: changing deprecated rb_cData to rb_cObject.

Ruby 3.0 deprecated rb_cData with the intention to remove it in release 3.1.
This commit changes references of rb_cData to rb_cObject. This was don

Ruby: changing deprecated rb_cData to rb_cObject.

Ruby 3.0 deprecated rb_cData with the intention to remove it in release 3.1.
This commit changes references of rb_cData to rb_cObject. This was done so we
can support distributions that package Ruby 3.0, such as Fedora 34.

We also need to call rb_undef_alloc_func because we're no longer deriving from
rb_cData. This prevents unnecessary allocations.

See:
https://docs.ruby-lang.org/en/3.0.0/doc/extension_rdoc.html

"It is recommended that klass derives from a special class called Data
(rb_cData) but not from Object or other ordinal classes. If it doesn't,
you have to call rb_undef_alloc_func(klass)."

show more ...


Revision tags: 1.23.0-1, 1.23.0, 1.22.0-1, 1.22.0, 1.21.0-1, 1.21.0
# 1687:b9d99e596725 04-Nov-2020 Max Romanov

Ruby: request processing in multiple threads.

This closes #482 issue on GitHub.


Revision tags: 1.20.0-1, 1.20.0, 1.19.0-1, 1.19.0, 1.18.0-1, 1.18.0, 1.17.0-1, 1.17.0, 1.16.0-1, 1.16.0
# 1398:05063d6eec8e 12-Mar-2020 Max Romanov

Introducing readline function in libunit.

Ruby and Java modules now use this function instead of own
implementations.


Revision tags: 1.15.0-1, 1.15.0
# 1337:2200adad4885 28-Jan-2020 Max Romanov

Ruby: changing callback functions prototype for v2.7.

This closes #371 issue on GitHub.


Revision tags: 1.14.0-1, 1.14.0, 1.13.0-1, 1.13.0
# 1235:4d5998f60f20 10-Oct-2019 Igor Sysoev

Style fixes.


Revision tags: 1.12.0-1, 1.12.0, 1.11.0-2, 1.11.0-1, 1.11.0, 1.10.0-2, 1.10.0-1, 1.10.0, 1.9.0-1, 1.9.0, 1.8.0-1, 1.8.0, 1.7.1-1, 1.7.1, 1.7-1, 1.7, 1.6-1, 1.6, 1.5-1, 1.5, 1.4-2, 1.4
# 743:e0f0cd7d244a 06-Aug-2018 Max Romanov

Unit application library.

Library now used in all language modules.
Old 'nxt_app_*' code removed.

See src/test/nxt_unit_app_test.c for usage sample.


Revision tags: 1.3, 1.2, 1.1, 1.0, 0.7
# 584:28e8e1877e62 21-Mar-2018 Alexander Borisov

Added Ruby support.