concurrent-ruby-edge 0.5.0 → 0.6.0.pre1

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.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -1
  3. data/README.md +3 -0
  4. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent-edge.rb +1 -0
  5. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor.rb +0 -0
  6. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour.rb +0 -0
  7. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/abstract.rb +0 -0
  8. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/awaits.rb +0 -0
  9. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/buffer.rb +0 -0
  10. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/errors_on_unknown_message.rb +0 -0
  11. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/executes_context.rb +0 -0
  12. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/linking.rb +0 -0
  13. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/pausing.rb +0 -0
  14. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/removes_child.rb +0 -0
  15. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/sets_results.rb +0 -0
  16. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/supervising.rb +0 -0
  17. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/behaviour/termination.rb +0 -0
  18. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/context.rb +0 -0
  19. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/core.rb +0 -0
  20. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/default_dead_letter_handler.rb +0 -0
  21. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/envelope.rb +0 -0
  22. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/errors.rb +0 -0
  23. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/internal_delegations.rb +0 -0
  24. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/public_delegations.rb +0 -0
  25. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/reference.rb +2 -7
  26. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/root.rb +0 -0
  27. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/type_check.rb +0 -0
  28. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/utils.rb +0 -0
  29. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/utils/ad_hoc.rb +0 -0
  30. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/utils/balancer.rb +0 -0
  31. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/utils/broadcast.rb +0 -0
  32. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/actor/utils/pool.rb +0 -0
  33. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel.rb +0 -0
  34. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/buffer.rb +0 -0
  35. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/buffer/base.rb +0 -0
  36. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/buffer/buffered.rb +0 -0
  37. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/buffer/dropping.rb +0 -0
  38. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/buffer/sliding.rb +0 -0
  39. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/buffer/ticker.rb +0 -0
  40. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/buffer/timer.rb +0 -0
  41. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/buffer/unbuffered.rb +0 -0
  42. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/selector.rb +0 -0
  43. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/selector/after_clause.rb +0 -0
  44. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/selector/default_clause.rb +0 -0
  45. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/selector/error_clause.rb +0 -0
  46. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/selector/put_clause.rb +0 -0
  47. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/selector/take_clause.rb +0 -0
  48. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/channel/tick.rb +0 -0
  49. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge.rb +0 -0
  50. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/cancellation.rb +0 -0
  51. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/channel.rb +0 -0
  52. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/erlang_actor.rb +0 -0
  53. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/lock_free_linked_set.rb +0 -0
  54. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/lock_free_linked_set/node.rb +0 -0
  55. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/lock_free_linked_set/window.rb +0 -0
  56. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/lock_free_queue.rb +0 -0
  57. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/old_channel_integration.rb +0 -0
  58. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/processing_actor.rb +0 -0
  59. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/promises.rb +0 -0
  60. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/edge/throttle.rb +0 -0
  61. data/lib/concurrent-ruby-edge/concurrent/edge/version.rb +3 -0
  62. data/lib/concurrent-ruby-edge/concurrent/executor/wrapping_executor.rb +47 -0
  63. data/{lib-edge → lib/concurrent-ruby-edge}/concurrent/lazy_register.rb +0 -0
  64. metadata +68 -67
  65. data/lib-edge/concurrent/edge/version.rb +0 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e86341312f902de51400e475c3f05e35592c6c8178974e6a1bb58b16e91230ac
4
- data.tar.gz: dafef294e63a9fa19760978ef848b60bb6ec2b2e6db0cb948a893d2d379d2eeb
3
+ metadata.gz: 6c18b333341ffa01a55d75fa03ac91d29eaf3f8c7dfb73cf1fcc26c075d0ef93
4
+ data.tar.gz: 025c9fd8f491a0d8a02c6927dc4c08d1e1274d8e42b755c8f31576d0a57fee7b
5
5
  SHA512:
6
- metadata.gz: 6251909073feaacc9bf1dbaacf192a1fa71cf264ed9a0cca60a7039151b27458252ccc857377761d4c2a104610e6f978d983f75bd474eebbb3f5b1e3d68ecb56
7
- data.tar.gz: 7e201108e4e985a4afa99e8b6ab280420c20b0e07e1dc83988555c11f6fd52383068f59af935000fccaa41a01717251ba6827cfe48c4404c35faf29791b845c0
6
+ metadata.gz: a0bca2709598facfacc4619c63dd43cb41e7b0ebf5530f35480c0269115ce607eaca091a0dab1346328cde7c3c7c9d91bc963e62d4ae0ae9f7d077a0c3b003b4
7
+ data.tar.gz: 1966dfc117e3f081df8c1c5eb7ad1ee07b691c0bf21f5980d9715891f99ac10a81a63e4309b277df1d03fb876e72fd81452ed1d663fa522c78025040d7ebf6dd
@@ -1,6 +1,22 @@
1
1
  ## Current
2
2
 
3
- ## Release v1.1.5, edge v0.5.0 (10 mar 2019)
3
+ ## Release v1.1.6.pre1, edge v0.6.0.pre1 (26 Jan 2020)
4
+
5
+ concurrent-ruby:
6
+
7
+ * Allow to name executors, the name is also used to name their threads (#828)
8
+ * Implement #dup and #clone for structs (#838)
9
+ * Safer finalizers for thread local variables (#821)
10
+ * Documentation fixes
11
+ * Use Ruby's Etc.nprocessors if available (#814)
12
+ * Fix directory structure not to mess with packaging tools (#812)
13
+ * Fix termination of pools on JRuby (#840)
14
+
15
+ concurrent-ruby-edge:
16
+
17
+ * Add WrappingExecutor (#830)
18
+
19
+ ## Release v1.1.5, edge v0.5.0 (10 Mar 2019)
4
20
 
5
21
  concurrent-ruby:
6
22
 
data/README.md CHANGED
@@ -253,6 +253,9 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
253
253
  * [ErlangActor](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/ErlangActor.html)
254
254
  Actor implementation which precisely matches Erlang actor behaviour.
255
255
  Requires at least Ruby 2.1 otherwise it's not loaded.
256
+ * [WrappingExecutor](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/WrappingExecutor.html)
257
+ A delegating executor which modifies each task before the task is given to
258
+ the target executor it delegates to.
256
259
 
257
260
  ## Supported Ruby versions
258
261
 
@@ -6,6 +6,7 @@ require 'concurrent/actor'
6
6
  require 'concurrent/agent'
7
7
  require 'concurrent/channel'
8
8
  require 'concurrent/lazy_register'
9
+ require 'concurrent/executor/wrapping_executor' if Concurrent.ruby_version :>=, 2, 1, 0
9
10
 
10
11
  require 'concurrent/edge/lock_free_linked_set'
11
12
  require 'concurrent/edge/lock_free_queue'
@@ -35,12 +35,7 @@ module Concurrent
35
35
 
36
36
  alias_method :<<, :tell
37
37
 
38
- # @note it's a good practice to use tell whenever possible. Ask should be used only for
39
- # testing and when it returns very shortly. It can lead to deadlock if all threads in
40
- # global_io_executor will block on while asking. It's fine to use it form outside of actors and
41
- # global_io_executor.
42
- #
43
- # @note it's a good practice to use {#tell} whenever possible. Results can be send back with other messages.
38
+ # @note it's a good practice to use {#tell} whenever possible. Results can be sent back with other messages.
44
39
  # Ask should be used only for testing and when it returns very shortly. It can lead to deadlock if all threads in
45
40
  # global_io_executor will block on while asking. It's fine to use it form outside of actors and
46
41
  # global_io_executor.
@@ -61,7 +56,7 @@ module Concurrent
61
56
  # Sends the message synchronously and blocks until the message
62
57
  # is processed. Raises on error.
63
58
  #
64
- # @note it's a good practice to use {#tell} whenever possible. Results can be send back with other messages.
59
+ # @note it's a good practice to use {#tell} whenever possible. Results can be sent back with other messages.
65
60
  # Ask should be used only for testing and when it returns very shortly. It can lead to deadlock if all threads in
66
61
  # global_io_executor will block on while asking. It's fine to use it form outside of actors and
67
62
  # global_io_executor.
@@ -0,0 +1,3 @@
1
+ module Concurrent
2
+ EDGE_VERSION = '0.6.0.pre1'
3
+ end
@@ -0,0 +1,47 @@
1
+ module Concurrent
2
+
3
+ # A delegating executor which modifies each task with arguments
4
+ # before the task is given to the target executor it delegates to.
5
+ # @example Count task executions
6
+ # counter = AtomicFixnum.new
7
+ # count_executions = WrappingExecutor.new Concurrent.global_io_executor do |*args, &task|
8
+ # [*args, -> *args { counter.increment; task.call *args }]
9
+ # end
10
+ # 10.times { count_executions.post { :do_something } }
11
+ # sleep 0.01
12
+ # counter.value #=> 10
13
+ class WrappingExecutor < Synchronization::Object
14
+ safe_initialization!
15
+
16
+ include ExecutorService
17
+
18
+ # @param [Executor] executor an executor to delegate the tasks to
19
+ # @yield [*args, &task] A function which can modify the task with arguments
20
+ # @yieldparam [Array<Object>] *args the arguments submitted with the tasks
21
+ # @yieldparam [block] &task the task submitted to the executor to be modified
22
+ # @yieldreturn [Array<Object>] a new arguments and task `[*args, task]` which are submitted to the target executor
23
+ def initialize(executor, &wrapper)
24
+ super()
25
+ @Wrapper = wrapper
26
+ @Executor = executor
27
+ end
28
+
29
+ # @!macro executor_service_method_post
30
+ #
31
+ # @see #initialize how the tasks can be modified
32
+ def post(*args, &task)
33
+ *args, task = @Wrapper.call(*args, &task)
34
+ @Executor.post(*args, &task)
35
+ end
36
+
37
+ # @!macro executor_service_method_can_overflow_question
38
+ def can_overflow?
39
+ @Executor.can_overflow?
40
+ end
41
+
42
+ # @!macro executor_service_method_serialized_question
43
+ def serialized?
44
+ @Executor.serialized?
45
+ end
46
+ end
47
+ end
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.5.0
4
+ version: 0.6.0.pre1
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: 2019-03-11 00:00:00.000000000 Z
13
+ date: 2020-01-26 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.5
21
+ version: 1.1.6.pre1
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.5
28
+ version: 1.1.6.pre1
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
@@ -42,65 +42,66 @@ files:
42
42
  - CHANGELOG.md
43
43
  - LICENSE.md
44
44
  - README.md
45
- - lib-edge/concurrent-edge.rb
46
- - lib-edge/concurrent/actor.rb
47
- - lib-edge/concurrent/actor/behaviour.rb
48
- - lib-edge/concurrent/actor/behaviour/abstract.rb
49
- - lib-edge/concurrent/actor/behaviour/awaits.rb
50
- - lib-edge/concurrent/actor/behaviour/buffer.rb
51
- - lib-edge/concurrent/actor/behaviour/errors_on_unknown_message.rb
52
- - lib-edge/concurrent/actor/behaviour/executes_context.rb
53
- - lib-edge/concurrent/actor/behaviour/linking.rb
54
- - lib-edge/concurrent/actor/behaviour/pausing.rb
55
- - lib-edge/concurrent/actor/behaviour/removes_child.rb
56
- - lib-edge/concurrent/actor/behaviour/sets_results.rb
57
- - lib-edge/concurrent/actor/behaviour/supervising.rb
58
- - lib-edge/concurrent/actor/behaviour/termination.rb
59
- - lib-edge/concurrent/actor/context.rb
60
- - lib-edge/concurrent/actor/core.rb
61
- - lib-edge/concurrent/actor/default_dead_letter_handler.rb
62
- - lib-edge/concurrent/actor/envelope.rb
63
- - lib-edge/concurrent/actor/errors.rb
64
- - lib-edge/concurrent/actor/internal_delegations.rb
65
- - lib-edge/concurrent/actor/public_delegations.rb
66
- - lib-edge/concurrent/actor/reference.rb
67
- - lib-edge/concurrent/actor/root.rb
68
- - lib-edge/concurrent/actor/type_check.rb
69
- - lib-edge/concurrent/actor/utils.rb
70
- - lib-edge/concurrent/actor/utils/ad_hoc.rb
71
- - lib-edge/concurrent/actor/utils/balancer.rb
72
- - lib-edge/concurrent/actor/utils/broadcast.rb
73
- - lib-edge/concurrent/actor/utils/pool.rb
74
- - lib-edge/concurrent/channel.rb
75
- - lib-edge/concurrent/channel/buffer.rb
76
- - lib-edge/concurrent/channel/buffer/base.rb
77
- - lib-edge/concurrent/channel/buffer/buffered.rb
78
- - lib-edge/concurrent/channel/buffer/dropping.rb
79
- - lib-edge/concurrent/channel/buffer/sliding.rb
80
- - lib-edge/concurrent/channel/buffer/ticker.rb
81
- - lib-edge/concurrent/channel/buffer/timer.rb
82
- - lib-edge/concurrent/channel/buffer/unbuffered.rb
83
- - lib-edge/concurrent/channel/selector.rb
84
- - lib-edge/concurrent/channel/selector/after_clause.rb
85
- - lib-edge/concurrent/channel/selector/default_clause.rb
86
- - lib-edge/concurrent/channel/selector/error_clause.rb
87
- - lib-edge/concurrent/channel/selector/put_clause.rb
88
- - lib-edge/concurrent/channel/selector/take_clause.rb
89
- - lib-edge/concurrent/channel/tick.rb
90
- - lib-edge/concurrent/edge.rb
91
- - lib-edge/concurrent/edge/cancellation.rb
92
- - lib-edge/concurrent/edge/channel.rb
93
- - lib-edge/concurrent/edge/erlang_actor.rb
94
- - lib-edge/concurrent/edge/lock_free_linked_set.rb
95
- - lib-edge/concurrent/edge/lock_free_linked_set/node.rb
96
- - lib-edge/concurrent/edge/lock_free_linked_set/window.rb
97
- - lib-edge/concurrent/edge/lock_free_queue.rb
98
- - lib-edge/concurrent/edge/old_channel_integration.rb
99
- - lib-edge/concurrent/edge/processing_actor.rb
100
- - lib-edge/concurrent/edge/promises.rb
101
- - lib-edge/concurrent/edge/throttle.rb
102
- - lib-edge/concurrent/edge/version.rb
103
- - lib-edge/concurrent/lazy_register.rb
45
+ - lib/concurrent-ruby-edge/concurrent-edge.rb
46
+ - lib/concurrent-ruby-edge/concurrent/actor.rb
47
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour.rb
48
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/abstract.rb
49
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/awaits.rb
50
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/buffer.rb
51
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/errors_on_unknown_message.rb
52
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/executes_context.rb
53
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/linking.rb
54
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/pausing.rb
55
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/removes_child.rb
56
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/sets_results.rb
57
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/supervising.rb
58
+ - lib/concurrent-ruby-edge/concurrent/actor/behaviour/termination.rb
59
+ - lib/concurrent-ruby-edge/concurrent/actor/context.rb
60
+ - lib/concurrent-ruby-edge/concurrent/actor/core.rb
61
+ - lib/concurrent-ruby-edge/concurrent/actor/default_dead_letter_handler.rb
62
+ - lib/concurrent-ruby-edge/concurrent/actor/envelope.rb
63
+ - lib/concurrent-ruby-edge/concurrent/actor/errors.rb
64
+ - lib/concurrent-ruby-edge/concurrent/actor/internal_delegations.rb
65
+ - lib/concurrent-ruby-edge/concurrent/actor/public_delegations.rb
66
+ - lib/concurrent-ruby-edge/concurrent/actor/reference.rb
67
+ - lib/concurrent-ruby-edge/concurrent/actor/root.rb
68
+ - lib/concurrent-ruby-edge/concurrent/actor/type_check.rb
69
+ - lib/concurrent-ruby-edge/concurrent/actor/utils.rb
70
+ - lib/concurrent-ruby-edge/concurrent/actor/utils/ad_hoc.rb
71
+ - lib/concurrent-ruby-edge/concurrent/actor/utils/balancer.rb
72
+ - lib/concurrent-ruby-edge/concurrent/actor/utils/broadcast.rb
73
+ - lib/concurrent-ruby-edge/concurrent/actor/utils/pool.rb
74
+ - lib/concurrent-ruby-edge/concurrent/channel.rb
75
+ - lib/concurrent-ruby-edge/concurrent/channel/buffer.rb
76
+ - lib/concurrent-ruby-edge/concurrent/channel/buffer/base.rb
77
+ - lib/concurrent-ruby-edge/concurrent/channel/buffer/buffered.rb
78
+ - lib/concurrent-ruby-edge/concurrent/channel/buffer/dropping.rb
79
+ - lib/concurrent-ruby-edge/concurrent/channel/buffer/sliding.rb
80
+ - lib/concurrent-ruby-edge/concurrent/channel/buffer/ticker.rb
81
+ - lib/concurrent-ruby-edge/concurrent/channel/buffer/timer.rb
82
+ - lib/concurrent-ruby-edge/concurrent/channel/buffer/unbuffered.rb
83
+ - lib/concurrent-ruby-edge/concurrent/channel/selector.rb
84
+ - lib/concurrent-ruby-edge/concurrent/channel/selector/after_clause.rb
85
+ - lib/concurrent-ruby-edge/concurrent/channel/selector/default_clause.rb
86
+ - lib/concurrent-ruby-edge/concurrent/channel/selector/error_clause.rb
87
+ - lib/concurrent-ruby-edge/concurrent/channel/selector/put_clause.rb
88
+ - lib/concurrent-ruby-edge/concurrent/channel/selector/take_clause.rb
89
+ - lib/concurrent-ruby-edge/concurrent/channel/tick.rb
90
+ - lib/concurrent-ruby-edge/concurrent/edge.rb
91
+ - lib/concurrent-ruby-edge/concurrent/edge/cancellation.rb
92
+ - lib/concurrent-ruby-edge/concurrent/edge/channel.rb
93
+ - lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb
94
+ - lib/concurrent-ruby-edge/concurrent/edge/lock_free_linked_set.rb
95
+ - lib/concurrent-ruby-edge/concurrent/edge/lock_free_linked_set/node.rb
96
+ - lib/concurrent-ruby-edge/concurrent/edge/lock_free_linked_set/window.rb
97
+ - lib/concurrent-ruby-edge/concurrent/edge/lock_free_queue.rb
98
+ - lib/concurrent-ruby-edge/concurrent/edge/old_channel_integration.rb
99
+ - lib/concurrent-ruby-edge/concurrent/edge/processing_actor.rb
100
+ - lib/concurrent-ruby-edge/concurrent/edge/promises.rb
101
+ - lib/concurrent-ruby-edge/concurrent/edge/throttle.rb
102
+ - lib/concurrent-ruby-edge/concurrent/edge/version.rb
103
+ - lib/concurrent-ruby-edge/concurrent/executor/wrapping_executor.rb
104
+ - lib/concurrent-ruby-edge/concurrent/lazy_register.rb
104
105
  homepage: http://www.concurrent-ruby.com
105
106
  licenses:
106
107
  - MIT
@@ -108,7 +109,7 @@ metadata: {}
108
109
  post_install_message:
109
110
  rdoc_options: []
110
111
  require_paths:
111
- - lib-edge
112
+ - lib/concurrent-ruby-edge
112
113
  required_ruby_version: !ruby/object:Gem::Requirement
113
114
  requirements:
114
115
  - - ">="
@@ -116,12 +117,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
116
117
  version: 1.9.3
117
118
  required_rubygems_version: !ruby/object:Gem::Requirement
118
119
  requirements:
119
- - - ">="
120
+ - - ">"
120
121
  - !ruby/object:Gem::Version
121
- version: '0'
122
+ version: 1.3.1
122
123
  requirements: []
123
124
  rubyforge_project:
124
- rubygems_version: 2.7.8
125
+ rubygems_version: 2.7.9
125
126
  signing_key:
126
127
  specification_version: 4
127
128
  summary: Edge features and additions to the concurrent-ruby gem.
@@ -1,3 +0,0 @@
1
- module Concurrent
2
- EDGE_VERSION = '0.5.0'
3
- end