concurrent-ruby 0.9.1-java → 0.9.2-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f83e4336126502153551f929eee369cd8216b18d
4
- data.tar.gz: 2c5ff95b7bc1850a2a81e3ed90c0cbe2120e5064
3
+ metadata.gz: 58fcb6fe96e8a611c32e4d23d3016f11786496f7
4
+ data.tar.gz: bed6902157997d4f55097c9bf4829e3e75a38622
5
5
  SHA512:
6
- metadata.gz: 204ffe7abafca91f53b32075ea39a4c9cd260c753c7d1dc454b26b6e9e1238c150e3a78e9fce5a498a5d935efcc0e9b217ee20cef3477bc979a5078cb29d7077
7
- data.tar.gz: 9d854dad02dbdb4a510d1df469467047b5ab5499341848ffacbe04bd914ba4c437189125a2d690bac474fa178a377df41d79643fa2d001abca6657b0b1ab4cc7
6
+ metadata.gz: 83c7e538c3bafbd71ae156d393110ab3387dd83b56a0d6a1f06588da2e430e41bd3896f1d50f1d3b047c3523a7f4985d4a72a60e6bf54d1bc011fadc9c3a7ce2
7
+ data.tar.gz: f589e034b4bc9138b9c44c2f76ffeaccef3d01299e93ede9866f6f972b4aa3153b4f56fa8b8aa076b5084cecaff858423d8f1bb712dc117f4c38b481e5af59b3
@@ -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
Binary file
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: java
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.
@@ -123,17 +123,17 @@ require_paths:
123
123
  - lib
124
124
  required_ruby_version: !ruby/object:Gem::Requirement
125
125
  requirements:
126
- - - '>='
126
+ - - ">="
127
127
  - !ruby/object:Gem::Version
128
128
  version: 1.9.3
129
129
  required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  requirements:
131
- - - '>='
131
+ - - ">="
132
132
  - !ruby/object:Gem::Version
133
133
  version: '0'
134
134
  requirements: []
135
135
  rubyforge_project:
136
- rubygems_version: 2.4.5
136
+ rubygems_version: 2.4.8
137
137
  signing_key:
138
138
  specification_version: 4
139
139
  summary: Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, Haskell, F#, C#, Java, and classic concurrency patterns.