concurrent-ruby 0.9.1 → 0.9.2

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
  SHA1:
3
- metadata.gz: 1e6abc5183c2dabc1d3bda8b2cade00544f9dbf0
4
- data.tar.gz: b119ca76d4aabf27a7361f58a6f7fc890894e846
3
+ metadata.gz: 470507742053628268cc6099862319dc532c8adf
4
+ data.tar.gz: 744b0057156c93efd399e7c85de3adfd20be090c
5
5
  SHA512:
6
- metadata.gz: dc9406ff279405553d5050f637136f003fff9985f107686fbd861c43f7eced5a55bb8ef80e4a5710aa86af0dfbe1cd701116c75aa21a48429052080f90ba4ebd
7
- data.tar.gz: 8e5a58bb8e30d7ae10fc13d8b41cc5e960241991ca63a36a1c6c35e9daeb85222576ce6073374b24940268d5fb3f01c51139aa20480cbe19f691517237466eaa
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
@@ -1,4 +1,4 @@
1
1
  module Concurrent
2
- VERSION = '0.9.1'
3
- EDGE_VERSION = '0.1.1'
2
+ VERSION = '0.9.2'
3
+ EDGE_VERSION = '0.1.2'
4
4
  end
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.1
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-08-09 00:00:00.000000000 Z
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.