File tree Expand file tree Collapse file tree 5 files changed +7
-12
lines changed
lib/concurrent-ruby/concurrent Expand file tree Collapse file tree 5 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -259,15 +259,11 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
259
259
260
260
## Supported Ruby versions
261
261
262
- * MRI 2.0 and above
263
- * JRuby 9000
264
- * TruffleRuby are supported.
265
- * Any Ruby interpreter that is compliant with Ruby 2.0 or newer.
262
+ * MRI 2.4.10 and above
263
+ * Latest JRuby 9000
264
+ * Latest TruffleRuby
266
265
267
- Actually we still support mri 1.9.3 and jruby 1.7.27 but we are looking at ways how to drop the support.
268
- Java 8 is preferred for JRuby but every Java version on which JRuby 9000 runs is supported.
269
-
270
- The legacy support for Rubinius is kept but it is no longer maintained, if you would like to help
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
271
267
please respond to [ #739 ] ( https://github.com/ruby-concurrency/concurrent-ruby/issues/739 ) .
272
268
273
269
## Usage
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
23
23
Please see http://concurrent-ruby.com for more information.
24
24
TXT
25
25
26
- s . required_ruby_version = '>= 1.9.3 '
26
+ s . required_ruby_version = '>= 2.4.10 '
27
27
28
28
s . add_runtime_dependency 'concurrent-ruby' , "~> #{ Concurrent ::VERSION } "
29
29
end
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Gem::Specification.new do |s|
21
21
s . require_paths = [ 'lib' ]
22
22
s . extensions = 'ext/concurrent-ruby-ext/extconf.rb'
23
23
24
- s . required_ruby_version = '>= 1.9.3 '
24
+ s . required_ruby_version = '>= 2.4.10 '
25
25
26
26
s . add_runtime_dependency 'concurrent-ruby' , "= #{ Concurrent ::VERSION } "
27
27
end
Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ Gem::Specification.new do |s|
27
27
TXT
28
28
s . metadata [ "source_code_uri" ] = "https://github.com/ruby-concurrency/concurrent-ruby"
29
29
s . metadata [ "changelog_uri" ] = "https://github.com/ruby-concurrency/concurrent-ruby/blob/master/CHANGELOG.md"
30
- s . required_ruby_version = '>= 1.9.3 '
30
+ s . required_ruby_version = '>= 2.4.10 '
31
31
end
Original file line number Diff line number Diff line change @@ -281,7 +281,6 @@ def key(value)
281
281
each_pair { |k , v | return k if v == value }
282
282
nil
283
283
end unless method_defined? ( :key )
284
- alias_method :index , :key if RUBY_VERSION < '1.9'
285
284
286
285
# Is map empty?
287
286
# @return [true, false]
You can’t perform that action at this time.
0 commit comments