concurrent-ruby 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/concurrent/configuration.rb +0 -14
- data/lib/concurrent/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 470507742053628268cc6099862319dc532c8adf
|
4
|
+
data.tar.gz: 744b0057156c93efd399e7c85de3adfd20be090c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86cb284c46ab9541832c4ba66dd57996750bb05af382a65a718569e46206204862d77c09c79ed9ba61823d0bc847af98c7766da81a4363034c84c0e4644e2712
|
7
|
+
data.tar.gz: eb9a12909e6726ba9ede889066b81fe6bbe2e787e8e12f124300d11b5343b577ddcb7469087fada3abb7c481ce71b63a6a6144355775ac2329c410dd49ceef00
|
@@ -279,18 +279,4 @@ module Concurrent
|
|
279
279
|
def self.configure
|
280
280
|
yield(configuration)
|
281
281
|
end
|
282
|
-
|
283
|
-
# for dependency reasons this check cannot be in concurrent/synchronization
|
284
|
-
if Concurrent.on_jruby?
|
285
|
-
require 'java'
|
286
|
-
|
287
|
-
version_string = java.lang.System.getProperties['java.runtime.version']
|
288
|
-
version = version_string.split('.', 3)[0..1].map(&:to_i)
|
289
|
-
if (version <=> [1, 8]) < 0
|
290
|
-
deprecated <<-TXT.gsub(/^\s*\|/, '').chop, 0
|
291
|
-
|Java 7 is deprecated, please use Java 8.
|
292
|
-
|Java 7 support is only best effort, it may not work. It will be removed in next release (1.0).
|
293
|
-
TXT
|
294
|
-
end
|
295
|
-
end
|
296
282
|
end
|
data/lib/concurrent/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: concurrent-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jerry D'Antonio
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-11-04 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: |
|
15
15
|
Modern concurrency tools including agents, futures, promises, thread pools, actors, supervisors, and more.
|