convenient_service 0.22.0 → 0.23.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 +4 -4
- data/lib/convenient_service/service/configs/standard.rb +3 -2
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/commands/cast_step_aware_enumerable.rb → can_have_service_aware_enumerables/commands/cast_service_aware_enumerable.rb} +19 -19
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/commands/cast_step_aware_enumerator.rb → can_have_service_aware_enumerables/commands/cast_service_aware_enumerator.rb} +15 -15
- data/lib/convenient_service/service/plugins/can_have_service_aware_enumerables/commands.rb +9 -0
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables → can_have_service_aware_enumerables}/concern.rb +18 -9
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/arithmetic_sequence_enumerator.rb +6 -6
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/array.rb +3 -3
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/base.rb +100 -112
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/boolean.rb +3 -3
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/chain_enumerator.rb +21 -21
- data/lib/convenient_service/service/plugins/can_have_service_aware_enumerables/entities/service_aware_enumerables/enumerable.rb +1761 -0
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/enumerator.rb +49 -27
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/hash.rb +3 -3
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/lazy_enumerator/jruby.rb +40 -40
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/lazy_enumerator.rb +133 -133
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/object.rb +4 -4
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/object_or_nil.rb +3 -3
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/entities/step_aware_enumerables → can_have_service_aware_enumerables/entities/service_aware_enumerables}/set.rb +3 -3
- data/lib/convenient_service/service/plugins/can_have_service_aware_enumerables/entities/service_aware_enumerables.rb +21 -0
- data/lib/convenient_service/service/plugins/{has_j_send_result/entities/result/plugins/can_have_modified_data.rb → can_have_service_aware_enumerables/entities.rb} +1 -2
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables → can_have_service_aware_enumerables}/exceptions.rb +2 -2
- data/lib/convenient_service/service/plugins/can_have_service_aware_enumerables.rb +12 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_used_in_service_aware_enumerables/concern.rb +52 -0
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables/commands.rb → can_have_steps/entities/step/plugins/can_be_used_in_service_aware_enumerables.rb} +1 -2
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_result/middleware.rb +2 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins.rb +1 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_used_in_service_aware_enumerables/concern.rb +97 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_used_in_service_aware_enumerables/entities/key_modes/base.rb +153 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_used_in_service_aware_enumerables/entities/key_modes/many.rb +141 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_used_in_service_aware_enumerables/entities/key_modes/none.rb +106 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_used_in_service_aware_enumerables/entities/key_modes/one.rb +146 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_used_in_service_aware_enumerables/entities/key_modes.rb +54 -0
- data/lib/convenient_service/service/plugins/{can_have_step_aware_enumerables → has_j_send_result/entities/result/plugins/can_be_used_in_service_aware_enumerables}/entities.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/{can_have_modified_data → can_be_used_in_service_aware_enumerables}/exceptions.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_used_in_service_aware_enumerables.rb +10 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern/instance_methods.rb +28 -10
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/exceptions.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins.rb +1 -1
- data/lib/convenient_service/service/plugins.rb +1 -1
- data/lib/convenient_service/version.rb +1 -1
- metadata +33 -26
- data/lib/convenient_service/service/plugins/can_have_step_aware_collections.rb +0 -12
- data/lib/convenient_service/service/plugins/can_have_step_aware_enumerables/entities/step_aware_enumerables/enumerable.rb +0 -1113
- data/lib/convenient_service/service/plugins/can_have_step_aware_enumerables/entities/step_aware_enumerables.rb +0 -21
- data/lib/convenient_service/service/plugins/can_have_step_aware_enumerables.rb +0 -12
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_modified_data/concern.rb +0 -109
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 94c8ca0f2034e3f58de99abb35774ad54ec24dd4caa610558d29d6922833f9c6
|
|
4
|
+
data.tar.gz: 866734bae2fbb20eef12154b20f3bc1048ea07008086bfd7bf9adf32f9bce72e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1531174cc0056a071142a5fd4c4070be7d62acb2db90664320987680729cbc8c938ca2443eb4c605d8bf217f30b29d996e97b6019a7d6c633e6ce08af53c6bf6
|
|
7
|
+
data.tar.gz: c55b6d8ee0dbd402f48bc96d5d536122e1268bdccd12cdd44961dacf5b70a0ca848921be4a18841b900cb5174b4d2212af17ab6ce5eaaaded3e027e04567fc0a
|
|
@@ -90,7 +90,7 @@ module ConvenientService
|
|
|
90
90
|
use ConvenientService::Plugins::Service::HasNegatedJSendResult::Concern if options.enabled?(:essential)
|
|
91
91
|
use ConvenientService::Plugins::Service::CanHaveSteps::Concern if options.enabled?(:essential)
|
|
92
92
|
use ConvenientService::Plugins::Service::CanHaveConnectedSteps::Concern if options.enabled?(:essential)
|
|
93
|
-
use ConvenientService::Plugins::Service::
|
|
93
|
+
use ConvenientService::Plugins::Service::CanHaveServiceAwareEnumerables::Concern if options.enabled?(:essential)
|
|
94
94
|
use ConvenientService::Plugins::Service::CanBeCalled::Concern if options.enabled?(:essential)
|
|
95
95
|
use ConvenientService::Plugins::Common::CanHaveCallbacks::Concern if options.enabled?(:callbacks)
|
|
96
96
|
use ConvenientService::Plugins::Service::CanHaveFallbacks::Concern if options.enabled?(:fallbacks)
|
|
@@ -219,7 +219,7 @@ module ConvenientService
|
|
|
219
219
|
use ConvenientService::Plugins::Result::CanHaveStep::Concern if options.enabled?(:essential)
|
|
220
220
|
use ConvenientService::Plugins::Result::CanBeCalled::Concern if options.enabled?(:essential)
|
|
221
221
|
use ConvenientService::Plugins::Result::CanBeStrict::Concern if options.enabled?(:essential)
|
|
222
|
-
use ConvenientService::Plugins::Result::
|
|
222
|
+
use ConvenientService::Plugins::Result::CanBeUsedInServiceAwareEnumerables::Concern if options.enabled?(:essential)
|
|
223
223
|
use ConvenientService::Plugins::Result::HasNegatedResult::Concern if options.enabled?(:essential)
|
|
224
224
|
use ConvenientService::Plugins::Result::HasPatternMatchingSupport::Concern if options.enabled?(:essential)
|
|
225
225
|
use ConvenientService::Plugins::Result::CanBeFromFallback::Concern if options.enabled?(:fallbacks)
|
|
@@ -338,6 +338,7 @@ module ConvenientService
|
|
|
338
338
|
use ConvenientService::Plugins::Step::CanBeCompleted::Concern if options.enabled?(:essential)
|
|
339
339
|
use ConvenientService::Plugins::Step::CanBeServiceStep::Concern if options.enabled?(:essential)
|
|
340
340
|
use ConvenientService::Plugins::Step::CanBeMethodStep::Concern if options.enabled?(:essential)
|
|
341
|
+
use ConvenientService::Plugins::Step::CanBeUsedInServiceAwareEnumerables::Concern if options.enabled?(:essential)
|
|
341
342
|
use ConvenientService::Plugins::Common::CanHaveCallbacks::Concern if options.enabled?(:callbacks)
|
|
342
343
|
use ConvenientService::Plugins::Step::CanHaveFallbacks::Concern if options.enabled?(:fallbacks)
|
|
343
344
|
use ConvenientService::Plugins::Step::HasInspect::Concern if options.enabled?(:inspect)
|
|
@@ -8,20 +8,20 @@
|
|
|
8
8
|
module ConvenientService
|
|
9
9
|
module Service
|
|
10
10
|
module Plugins
|
|
11
|
-
module
|
|
11
|
+
module CanHaveServiceAwareEnumerables
|
|
12
12
|
module Commands
|
|
13
|
-
class
|
|
13
|
+
class CastServiceAwareEnumerable < Support::Command
|
|
14
14
|
##
|
|
15
15
|
# @return [Hash{Class => Class}]
|
|
16
16
|
#
|
|
17
|
-
|
|
18
|
-
::Array => Entities::
|
|
19
|
-
::Hash => Entities::
|
|
20
|
-
::Set => Entities::
|
|
21
|
-
::Enumerator => Entities::
|
|
22
|
-
::Enumerator::Lazy => Entities::
|
|
23
|
-
::Enumerator::Chain => Entities::
|
|
24
|
-
::Enumerator::ArithmeticSequence => Entities::
|
|
17
|
+
RUBY_CLASS_TO_SERVICE_AWARE_CLASS_MAP = {
|
|
18
|
+
::Array => Entities::ServiceAwareEnumerables::Array,
|
|
19
|
+
::Hash => Entities::ServiceAwareEnumerables::Hash,
|
|
20
|
+
::Set => Entities::ServiceAwareEnumerables::Set,
|
|
21
|
+
::Enumerator => Entities::ServiceAwareEnumerables::Enumerator,
|
|
22
|
+
::Enumerator::Lazy => Entities::ServiceAwareEnumerables::LazyEnumerator,
|
|
23
|
+
::Enumerator::Chain => Entities::ServiceAwareEnumerables::ChainEnumerator,
|
|
24
|
+
::Enumerator::ArithmeticSequence => Entities::ServiceAwareEnumerables::ArithmeticSequenceEnumerator
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
##
|
|
@@ -55,11 +55,11 @@ module ConvenientService
|
|
|
55
55
|
end
|
|
56
56
|
|
|
57
57
|
##
|
|
58
|
-
# @return [ConvenientService::Service::Plugins::
|
|
59
|
-
# @raise [ConvenientService::Service::Plugins::
|
|
58
|
+
# @return [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Entities::ServiceAwareEnumerables::Enumerable]
|
|
59
|
+
# @raise [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Exceptions::ObjectIsNotEnumerable]
|
|
60
60
|
#
|
|
61
61
|
def call
|
|
62
|
-
|
|
62
|
+
service_aware_enumerable_klass&.new(**attributes) || ::ConvenientService.raise(Exceptions::ObjectIsNotEnumerable.new(object: object))
|
|
63
63
|
end
|
|
64
64
|
|
|
65
65
|
private
|
|
@@ -67,16 +67,16 @@ module ConvenientService
|
|
|
67
67
|
##
|
|
68
68
|
# @return [Class]
|
|
69
69
|
#
|
|
70
|
-
def
|
|
71
|
-
klass =
|
|
70
|
+
def service_aware_enumerable_klass
|
|
71
|
+
klass = RUBY_CLASS_TO_SERVICE_AWARE_CLASS_MAP[object.class]
|
|
72
72
|
|
|
73
73
|
return klass if klass
|
|
74
74
|
|
|
75
75
|
case object
|
|
76
|
-
when ::Enumerator::Lazy then Entities::
|
|
77
|
-
when ::Enumerator::Chain then Entities::
|
|
78
|
-
when ::Enumerator then Entities::
|
|
79
|
-
when ::Enumerable then Entities::
|
|
76
|
+
when ::Enumerator::Lazy then Entities::ServiceAwareEnumerables::LazyEnumerator
|
|
77
|
+
when ::Enumerator::Chain then Entities::ServiceAwareEnumerables::ChainEnumerator
|
|
78
|
+
when ::Enumerator then Entities::ServiceAwareEnumerables::Enumerator
|
|
79
|
+
when ::Enumerable then Entities::ServiceAwareEnumerables::Enumerable
|
|
80
80
|
end
|
|
81
81
|
end
|
|
82
82
|
|
|
@@ -8,17 +8,17 @@
|
|
|
8
8
|
module ConvenientService
|
|
9
9
|
module Service
|
|
10
10
|
module Plugins
|
|
11
|
-
module
|
|
11
|
+
module CanHaveServiceAwareEnumerables
|
|
12
12
|
module Commands
|
|
13
|
-
class
|
|
13
|
+
class CastServiceAwareEnumerator < Support::Command
|
|
14
14
|
##
|
|
15
15
|
# @return [Hash{Class => Class}]
|
|
16
16
|
#
|
|
17
|
-
|
|
18
|
-
::Enumerator => Entities::
|
|
19
|
-
::Enumerator::Lazy => Entities::
|
|
20
|
-
::Enumerator::Chain => Entities::
|
|
21
|
-
::Enumerator::ArithmeticSequence => Entities::
|
|
17
|
+
RUBY_CLASS_TO_SERVICE_AWARE_CLASS_MAP = {
|
|
18
|
+
::Enumerator => Entities::ServiceAwareEnumerables::Enumerator,
|
|
19
|
+
::Enumerator::Lazy => Entities::ServiceAwareEnumerables::LazyEnumerator,
|
|
20
|
+
::Enumerator::Chain => Entities::ServiceAwareEnumerables::ChainEnumerator,
|
|
21
|
+
::Enumerator::ArithmeticSequence => Entities::ServiceAwareEnumerables::ArithmeticSequenceEnumerator
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
##
|
|
@@ -52,11 +52,11 @@ module ConvenientService
|
|
|
52
52
|
end
|
|
53
53
|
|
|
54
54
|
##
|
|
55
|
-
# @return [ConvenientService::Service::Plugins::
|
|
56
|
-
# @raise [ConvenientService::Service::Plugins::
|
|
55
|
+
# @return [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Entities::ServiceAwareEnumerables::Enumerable]
|
|
56
|
+
# @raise [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Exceptions::ObjectIsNotEnumerator]
|
|
57
57
|
#
|
|
58
58
|
def call
|
|
59
|
-
|
|
59
|
+
service_aware_enumerable_klass&.new(**attributes) || ::ConvenientService.raise(Exceptions::ObjectIsNotEnumerator.new(object: object))
|
|
60
60
|
end
|
|
61
61
|
|
|
62
62
|
private
|
|
@@ -64,15 +64,15 @@ module ConvenientService
|
|
|
64
64
|
##
|
|
65
65
|
# @return [Class]
|
|
66
66
|
#
|
|
67
|
-
def
|
|
68
|
-
klass =
|
|
67
|
+
def service_aware_enumerable_klass
|
|
68
|
+
klass = RUBY_CLASS_TO_SERVICE_AWARE_CLASS_MAP[object.class]
|
|
69
69
|
|
|
70
70
|
return klass if klass
|
|
71
71
|
|
|
72
72
|
case object
|
|
73
|
-
when ::Enumerator::Lazy then Entities::
|
|
74
|
-
when ::Enumerator::Chain then Entities::
|
|
75
|
-
when ::Enumerator then Entities::
|
|
73
|
+
when ::Enumerator::Lazy then Entities::ServiceAwareEnumerables::LazyEnumerator
|
|
74
|
+
when ::Enumerator::Chain then Entities::ServiceAwareEnumerables::ChainEnumerator
|
|
75
|
+
when ::Enumerator then Entities::ServiceAwareEnumerables::Enumerator
|
|
76
76
|
end
|
|
77
77
|
end
|
|
78
78
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
##
|
|
4
|
+
# @author Marian Kostyk <mariankostyk13895@gmail.com>
|
|
5
|
+
# @license LGPLv3 <https://www.gnu.org/licenses/lgpl-3.0.html>
|
|
6
|
+
##
|
|
7
|
+
|
|
8
|
+
require_relative "commands/cast_service_aware_enumerable"
|
|
9
|
+
require_relative "commands/cast_service_aware_enumerator"
|
|
@@ -8,31 +8,40 @@
|
|
|
8
8
|
module ConvenientService
|
|
9
9
|
module Service
|
|
10
10
|
module Plugins
|
|
11
|
-
module
|
|
11
|
+
module CanHaveServiceAwareEnumerables
|
|
12
12
|
module Concern
|
|
13
13
|
include Support::Concern
|
|
14
14
|
|
|
15
|
+
##
|
|
16
|
+
# TODO: Implement in `CanBeUsedInServiceAwareEnumerables`.
|
|
17
|
+
#
|
|
18
|
+
# class_methods do
|
|
19
|
+
# def to_service_aware_iteration_block_value
|
|
20
|
+
# end
|
|
21
|
+
# end
|
|
22
|
+
##
|
|
23
|
+
|
|
15
24
|
instance_methods do
|
|
16
25
|
##
|
|
17
26
|
# @api public
|
|
18
27
|
#
|
|
19
28
|
# @param object [Object] Can be any type.
|
|
20
|
-
# @return [ConvenientService::Service::Plugins::
|
|
21
|
-
# @raise [ConvenientService::Service::Plugins::
|
|
29
|
+
# @return [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Entities::ServiceAwareEnumerables::Enumerable]
|
|
30
|
+
# @raise [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Exceptions::ObjectIsNotEnumerable]
|
|
22
31
|
#
|
|
23
|
-
def
|
|
24
|
-
Commands::
|
|
32
|
+
def service_aware_enumerable(object)
|
|
33
|
+
Commands::CastServiceAwareEnumerable.call(object: object, organizer: self)
|
|
25
34
|
end
|
|
26
35
|
|
|
27
36
|
##
|
|
28
37
|
# @api public
|
|
29
38
|
#
|
|
30
39
|
# @param object [Object] Can be any type.
|
|
31
|
-
# @return [ConvenientService::Service::Plugins::
|
|
32
|
-
# @raise [ConvenientService::Service::Plugins::
|
|
40
|
+
# @return [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Entities::ServiceAwareEnumerables::Enumerator]
|
|
41
|
+
# @raise [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Exceptions::ObjectIsNotEnumerator]
|
|
33
42
|
#
|
|
34
|
-
def
|
|
35
|
-
Commands::
|
|
43
|
+
def service_aware_enumerator(object)
|
|
44
|
+
Commands::CastServiceAwareEnumerator.call(object: object, organizer: self)
|
|
36
45
|
end
|
|
37
46
|
end
|
|
38
47
|
end
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
module ConvenientService
|
|
9
9
|
module Service
|
|
10
10
|
module Plugins
|
|
11
|
-
module
|
|
11
|
+
module CanHaveServiceAwareEnumerables
|
|
12
12
|
module Entities
|
|
13
|
-
module
|
|
14
|
-
class ArithmeticSequenceEnumerator < Entities::
|
|
13
|
+
module ServiceAwareEnumerables
|
|
14
|
+
class ArithmeticSequenceEnumerator < Entities::ServiceAwareEnumerables::Enumerator
|
|
15
15
|
##
|
|
16
16
|
# @api private
|
|
17
17
|
#
|
|
@@ -39,11 +39,11 @@ module ConvenientService
|
|
|
39
39
|
|
|
40
40
|
##
|
|
41
41
|
# @param iteration_block [Proc, nil]
|
|
42
|
-
# @return [ConvenientService::Service::Plugins::
|
|
42
|
+
# @return [ConvenientService::Service::Plugins::CanHaveServiceAwareEnumerables::Entities::ServiceAwareEnumerables::Enumerable]
|
|
43
43
|
#
|
|
44
44
|
def each(&iteration_block)
|
|
45
|
-
with_processing_return_value_as_arithmetic_sequence_enumerator(arguments(&iteration_block)) do |&
|
|
46
|
-
enumerable.each(&
|
|
45
|
+
with_processing_return_value_as_arithmetic_sequence_enumerator(arguments(&iteration_block)) do |&service_aware_iteration_block|
|
|
46
|
+
enumerable.each(&service_aware_iteration_block)
|
|
47
47
|
end
|
|
48
48
|
end
|
|
49
49
|
end
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
module ConvenientService
|
|
9
9
|
module Service
|
|
10
10
|
module Plugins
|
|
11
|
-
module
|
|
11
|
+
module CanHaveServiceAwareEnumerables
|
|
12
12
|
module Entities
|
|
13
|
-
module
|
|
14
|
-
class Array < Entities::
|
|
13
|
+
module ServiceAwareEnumerables
|
|
14
|
+
class Array < Entities::ServiceAwareEnumerables::Enumerable
|
|
15
15
|
##
|
|
16
16
|
# @api private
|
|
17
17
|
#
|