@@ -42,8 +42,8 @@ You can also get started by triaging issues which may include reproducing bug re
42
42
## Thread Safety
43
43
44
44
* Concurrent Ruby makes one of the strongest thread safety guarantees of any Ruby concurrency
45
- library, providing consistent behavior and guarantees on all four of the main Ruby interpreters
46
- (MRI/CRuby, JRuby, Rubinius, TruffleRuby).*
45
+ library, providing consistent behavior and guarantees on all three main Ruby interpreters
46
+ (MRI/CRuby, JRuby, TruffleRuby).*
47
47
48
48
Every abstraction in this library is thread safe. Specific thread safety guarantees are documented
49
49
with each abstraction.
@@ -58,9 +58,9 @@ other Ruby library, many of which support the mantra of
58
58
Concurrent Ruby is also the only Ruby library which provides a full suite of thread safe and
59
59
immutable variable types and data structures.
60
60
61
- We've also initiated discussion to document [ memory model] ( docs-source/synchronization.md ) of Ruby which
62
- would provide consistent behaviour and guarantees on all four of the main Ruby interpreters
63
- (MRI/CRuby, JRuby, Rubinius, TruffleRuby).
61
+ We've also initiated discussion to document the [ memory model] ( docs-source/synchronization.md ) of Ruby which
62
+ would provide consistent behaviour and guarantees on all three main Ruby interpreters
63
+ (MRI/CRuby, JRuby, TruffleRuby).
64
64
65
65
## Features & Documentation
66
66
@@ -263,9 +263,6 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
263
263
* Latest JRuby 9000
264
264
* Latest TruffleRuby
265
265
266
- The legacy support for Rubinius is kept for the moment but it is no longer maintained and is liable to be removed. If you would like to help
267
- please respond to [ #739 ] ( https://github.com/ruby-concurrency/concurrent-ruby/issues/739 ) .
268
-
269
266
## Usage
270
267
271
268
Everything within this gem can be loaded simply by requiring it:
0 commit comments