concurrent-ruby-edge 0.6.0.pre1 → 0.6.0
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07bd4fa262a18699bf43156af7556a104b28183a278812f87a2000c6f471aa87
|
4
|
+
data.tar.gz: efbf99e09ebc0b5a813a1f51827fca255509cd7fca288864a7ef03db09ae705e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1f51066075fc76ea212ca3493cb390fa3596445f11fe35d346f7bbac2dfce95233513a07b8d0b31b55f25924212ce4e2804f0921247cee11ef602f8b28f2a3f
|
7
|
+
data.tar.gz: 1ee466164104b8bfccb7f386d721068d5b3018a65630231b2ba42ae94f04c42b58de8ff3228673f2e30a00c62bcf4a9fdb4b8989206b6a1d088c57990921aaf6
|
data/CHANGELOG.md
CHANGED
@@ -1,16 +1,24 @@
|
|
1
1
|
## Current
|
2
2
|
|
3
|
+
## Release v1.1.6, edge v0.6.0 (10 Feb 2020)
|
4
|
+
|
5
|
+
concurrent-ruby:
|
6
|
+
|
7
|
+
* (#841) Concurrent.disable_at_exit_handlers! is no longer needed and was deprecated.
|
8
|
+
* (#841) AbstractExecutorService#auto_terminate= was deprecated and has no effect.
|
9
|
+
Set :auto_terminate option instead when executor is initialized.
|
10
|
+
|
3
11
|
## Release v1.1.6.pre1, edge v0.6.0.pre1 (26 Jan 2020)
|
4
12
|
|
5
13
|
concurrent-ruby:
|
6
14
|
|
7
|
-
* Allow to name executors, the name is also used to name their threads
|
8
|
-
* Implement #dup and #clone for structs
|
9
|
-
* Safer finalizers for thread local variables
|
15
|
+
* (#828) Allow to name executors, the name is also used to name their threads
|
16
|
+
* (#838) Implement #dup and #clone for structs
|
17
|
+
* (#821) Safer finalizers for thread local variables
|
10
18
|
* Documentation fixes
|
11
|
-
* Use Ruby's Etc.nprocessors if available
|
12
|
-
* Fix directory structure not to mess with packaging tools
|
13
|
-
* Fix termination of pools on JRuby
|
19
|
+
* (#814) Use Ruby's Etc.nprocessors if available
|
20
|
+
* (#812) Fix directory structure not to mess with packaging tools
|
21
|
+
* (#840) Fix termination of pools on JRuby
|
14
22
|
|
15
23
|
concurrent-ruby-edge:
|
16
24
|
|
@@ -15,7 +15,7 @@ module Concurrent
|
|
15
15
|
include Enumerable
|
16
16
|
|
17
17
|
# NOTE: Move to global IO pool once stable
|
18
|
-
GOROUTINES = Concurrent::CachedThreadPool.new
|
18
|
+
GOROUTINES = Concurrent::CachedThreadPool.new
|
19
19
|
private_constant :GOROUTINES
|
20
20
|
|
21
21
|
BUFFER_TYPES = {
|
@@ -531,8 +531,8 @@ module Concurrent
|
|
531
531
|
module FunctionShortcuts
|
532
532
|
# Optionally included shortcut method for {Functions#spawn_actor}
|
533
533
|
# @return [Pid]
|
534
|
-
def spawn(*args, &body)
|
535
|
-
spawn_actor(*args, &body)
|
534
|
+
def spawn(*args, **kwargs, &body)
|
535
|
+
spawn_actor(*args, **kwargs, &body)
|
536
536
|
end
|
537
537
|
|
538
538
|
# Optionally included shortcut method for {Functions#terminate_actor}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: concurrent-ruby-edge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.0
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jerry D'Antonio
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2020-
|
13
|
+
date: 2020-02-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: concurrent-ruby
|
@@ -18,14 +18,14 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - "~>"
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.1.6
|
21
|
+
version: 1.1.6
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - "~>"
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 1.1.6
|
28
|
+
version: 1.1.6
|
29
29
|
description: |
|
30
30
|
These features are under active development and may change frequently. They are expected not to
|
31
31
|
keep backward compatibility (there may also lack tests and documentation). Semantic versions will
|
@@ -117,9 +117,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
117
117
|
version: 1.9.3
|
118
118
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
119
119
|
requirements:
|
120
|
-
- - "
|
120
|
+
- - ">="
|
121
121
|
- !ruby/object:Gem::Version
|
122
|
-
version:
|
122
|
+
version: '0'
|
123
123
|
requirements: []
|
124
124
|
rubyforge_project:
|
125
125
|
rubygems_version: 2.7.9
|