concurrent-ruby 0.9.1-java → 0.9.2-java
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 +4 -4
- data/lib/concurrent/configuration.rb +0 -14
- data/lib/concurrent/version.rb +2 -2
- data/lib/concurrent_ruby_ext.jar +0 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58fcb6fe96e8a611c32e4d23d3016f11786496f7
|
4
|
+
data.tar.gz: bed6902157997d4f55097c9bf4829e3e75a38622
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/concurrent/version.rb
CHANGED
data/lib/concurrent_ruby_ext.jar
CHANGED
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.
|
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-
|
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.
|
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.
|