convenient_service 0.23.0 → 0.24.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/dependencies/queries/version.rb +18 -0
- data/lib/convenient_service/service/configs/standard.rb +4 -1
- data/lib/convenient_service/service/plugins/{rescues_result_unhandled_exceptions → can_have_formatted_exceptions}/commands/format_backtrace.rb +1 -1
- data/lib/convenient_service/service/plugins/{rescues_result_unhandled_exceptions → can_have_formatted_exceptions}/commands/format_cause.rb +1 -1
- data/lib/convenient_service/service/plugins/{rescues_result_unhandled_exceptions → can_have_formatted_exceptions}/commands/format_class.rb +1 -1
- data/lib/convenient_service/service/plugins/{rescues_result_unhandled_exceptions → can_have_formatted_exceptions}/commands/format_exception.rb +2 -2
- data/lib/convenient_service/service/plugins/{rescues_result_unhandled_exceptions → can_have_formatted_exceptions}/commands/format_line.rb +1 -1
- data/lib/convenient_service/service/plugins/{rescues_result_unhandled_exceptions → can_have_formatted_exceptions}/commands/format_message.rb +1 -1
- data/lib/convenient_service/service/plugins/{rescues_result_unhandled_exceptions → can_have_formatted_exceptions}/constants.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_formatted_exceptions.rb +35 -0
- data/lib/convenient_service/service/plugins/can_have_handled_exceptions/concern.rb +34 -0
- data/lib/convenient_service/service/plugins/can_have_handled_exceptions.rb +8 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_exception/concern.rb +4 -4
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_handled_exception/concern.rb +61 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_handled_exception.rb +8 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_unhandled_exception/concern.rb +46 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_unhandled_exception.rb +8 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins.rb +2 -0
- data/lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/middleware.rb +3 -3
- data/lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions.rb +0 -2
- data/lib/convenient_service/service/plugins.rb +2 -0
- data/lib/convenient_service/version.rb +1 -1
- metadata +16 -9
- /data/lib/convenient_service/service/plugins/{rescues_result_unhandled_exceptions → can_have_formatted_exceptions}/commands.rb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b223651455eef03afc210c38e6ce570703b35bafc8543633072a019cfbb312fa
|
|
4
|
+
data.tar.gz: ace1e707494c39cfe83e4eda8b72d64b356db659ab437fe49b530b101cef23b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e79cfb96f54558b5a2382236777543b7bba3f46e3b360919ca0779359bf16a61b7784d6f5d92c6b925813a2714bb1aec20dc6a943656f85d34ba3f37de1bc23
|
|
7
|
+
data.tar.gz: 79510a4c2dc7370b01c09f82b8f062dcab488eb7113f1f85f2c5bde20af5553c1fec19f9cb69c9e81ee4a5b894a73298c793ed2a5eb125757bcb8065231c70fc
|
|
@@ -41,6 +41,24 @@ module ConvenientService
|
|
|
41
41
|
false
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
+
##
|
|
45
|
+
# @return [ConvenientService::Dependencies::Queries::Version]
|
|
46
|
+
#
|
|
47
|
+
# @example Beta version is considered as lower than major version.
|
|
48
|
+
# ConvenientService::Dependencies::Queries::Version.new("4.0.0.beta1") >= 4
|
|
49
|
+
# # => false
|
|
50
|
+
#
|
|
51
|
+
# @example That is why there is a way to compare only by the first segment of version.
|
|
52
|
+
# ConvenientService::Dependencies::Queries::Version.new("4.0.0.beta1").major_version >= 4
|
|
53
|
+
# # => true
|
|
54
|
+
#
|
|
55
|
+
# @internal
|
|
56
|
+
# TODO: Add direct specs.
|
|
57
|
+
#
|
|
58
|
+
def major_version
|
|
59
|
+
self.class.new(gem_version&.segments&.first.to_s)
|
|
60
|
+
end
|
|
61
|
+
|
|
44
62
|
##
|
|
45
63
|
# @return [Gem::Version, nil]
|
|
46
64
|
#
|
|
@@ -100,6 +100,7 @@ module ConvenientService
|
|
|
100
100
|
use ConvenientService::Plugins::Common::CachesConstructorArguments::Concern if options.enabled?(:recalculation)
|
|
101
101
|
use ConvenientService::Plugins::Common::CanBeCopied::Concern if options.enabled?(:recalculation)
|
|
102
102
|
use ConvenientService::Plugins::Service::CanHaveRecalculations::Concern if options.enabled?(:recalculation)
|
|
103
|
+
use ConvenientService::Plugins::Service::CanHaveHandledExceptions::Concern if options.enabled?(:essential)
|
|
103
104
|
use ConvenientService::Plugins::Service::CanNotBeInherited::Concern if options.enabled?(:code_review_automation)
|
|
104
105
|
use ConvenientService::Plugins::Service::HasJSendResultShortSyntax::Concern if options.enabled?(:short_syntax)
|
|
105
106
|
use ConvenientService::Plugins::Service::HasJSendResultStatusCheckShortSyntax::Concern if options.enabled?(:short_syntax)
|
|
@@ -224,7 +225,9 @@ module ConvenientService
|
|
|
224
225
|
use ConvenientService::Plugins::Result::HasPatternMatchingSupport::Concern if options.enabled?(:essential)
|
|
225
226
|
use ConvenientService::Plugins::Result::CanBeFromFallback::Concern if options.enabled?(:fallbacks)
|
|
226
227
|
use ConvenientService::Plugins::Result::CanHaveFallbacks::Concern if options.enabled?(:fallbacks)
|
|
227
|
-
use ConvenientService::Plugins::Result::CanBeFromException::Concern if options.enabled?(:
|
|
228
|
+
use ConvenientService::Plugins::Result::CanBeFromException::Concern if options.enabled?(:essential)
|
|
229
|
+
use ConvenientService::Plugins::Result::CanBeFromHandledException::Concern if options.enabled?(:essential)
|
|
230
|
+
use ConvenientService::Plugins::Result::CanBeFromUnhandledException::Concern if options.enabled?(:fault_tolerance)
|
|
228
231
|
use ConvenientService::Plugins::Result::HasInspect::Concern if options.enabled?(:inspect)
|
|
229
232
|
use ConvenientService::Plugins::Result::HasAwesomePrintInspect::Concern if options.enabled?(:awesome_print_inspect)
|
|
230
233
|
use ConvenientService::Plugins::Result::HasAmazingPrintInspect::Concern if options.enabled?(:amazing_print_inspect)
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
module ConvenientService
|
|
9
9
|
module Service
|
|
10
10
|
module Plugins
|
|
11
|
-
module
|
|
11
|
+
module CanHaveFormattedExceptions
|
|
12
12
|
module Commands
|
|
13
13
|
class FormatException < Support::Command
|
|
14
14
|
##
|
|
@@ -49,7 +49,7 @@ module ConvenientService
|
|
|
49
49
|
# @param max_backtrace_size [Integer]
|
|
50
50
|
# @return [void]
|
|
51
51
|
#
|
|
52
|
-
def initialize(exception:, args
|
|
52
|
+
def initialize(exception:, args: [], kwargs: {}, block: nil, max_backtrace_size: Constants::DEFAULT_MAX_BACKTRACE_SIZE)
|
|
53
53
|
@exception = exception
|
|
54
54
|
@args = args
|
|
55
55
|
@kwargs = kwargs
|
|
@@ -0,0 +1,35 @@
|
|
|
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 "can_have_formatted_exceptions/commands"
|
|
9
|
+
require_relative "can_have_formatted_exceptions/constants"
|
|
10
|
+
|
|
11
|
+
module ConvenientService
|
|
12
|
+
module Service
|
|
13
|
+
module Plugins
|
|
14
|
+
module CanHaveFormattedExceptions
|
|
15
|
+
class << self
|
|
16
|
+
##
|
|
17
|
+
# @return [Integer]
|
|
18
|
+
#
|
|
19
|
+
def default_max_backtrace_size
|
|
20
|
+
Constants::DEFAULT_MAX_BACKTRACE_SIZE
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
##
|
|
24
|
+
# @param exception [StandardError]
|
|
25
|
+
# @param kwargs [Hash{Symbol => Object}]
|
|
26
|
+
# @return [String]
|
|
27
|
+
#
|
|
28
|
+
def format_exception(exception, **kwargs)
|
|
29
|
+
Commands::FormatException.call(exception: exception, **kwargs)
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
module ConvenientService
|
|
9
|
+
module Service
|
|
10
|
+
module Plugins
|
|
11
|
+
module CanHaveHandledExceptions
|
|
12
|
+
module Concern
|
|
13
|
+
include Support::Concern
|
|
14
|
+
|
|
15
|
+
instance_methods do
|
|
16
|
+
##
|
|
17
|
+
# @api public
|
|
18
|
+
# @param max_backtrace_size [Integer]
|
|
19
|
+
# @return [ConvenientService::Service::Plugins::HasJSendResult::Entities::Result]
|
|
20
|
+
#
|
|
21
|
+
def error_from_exception(exception, max_backtrace_size: Plugins::CanHaveFormattedExceptions.default_max_backtrace_size)
|
|
22
|
+
error(
|
|
23
|
+
data: {handled_exception: exception},
|
|
24
|
+
message: Plugins::CanHaveFormattedExceptions.format_exception(exception, max_backtrace_size: max_backtrace_size),
|
|
25
|
+
code: :handled_exception
|
|
26
|
+
)
|
|
27
|
+
.copy(overrides: {kwargs: {exceptions: {handled: exception}}})
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -22,8 +22,8 @@ module ConvenientService
|
|
|
22
22
|
#
|
|
23
23
|
# @return [Boolean]
|
|
24
24
|
#
|
|
25
|
-
def
|
|
26
|
-
Utils.to_bool(
|
|
25
|
+
def from_exception?
|
|
26
|
+
Utils.to_bool(exception)
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
##
|
|
@@ -31,8 +31,8 @@ module ConvenientService
|
|
|
31
31
|
#
|
|
32
32
|
# @return [StandardError, nil]
|
|
33
33
|
#
|
|
34
|
-
def
|
|
35
|
-
extra_kwargs[:
|
|
34
|
+
def exception
|
|
35
|
+
extra_kwargs[:exceptions]&.values&.first
|
|
36
36
|
end
|
|
37
37
|
end
|
|
38
38
|
end
|
|
@@ -0,0 +1,61 @@
|
|
|
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
|
+
module ConvenientService
|
|
9
|
+
module Service
|
|
10
|
+
module Plugins
|
|
11
|
+
module HasJSendResult
|
|
12
|
+
module Entities
|
|
13
|
+
class Result
|
|
14
|
+
module Plugins
|
|
15
|
+
module CanBeFromHandledException
|
|
16
|
+
module Concern
|
|
17
|
+
include Support::Concern
|
|
18
|
+
|
|
19
|
+
instance_methods do
|
|
20
|
+
##
|
|
21
|
+
# @api public
|
|
22
|
+
#
|
|
23
|
+
# @return [Boolean]
|
|
24
|
+
#
|
|
25
|
+
def from_handled_exception?
|
|
26
|
+
Utils.to_bool(handled_exception)
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
##
|
|
30
|
+
# @api public
|
|
31
|
+
#
|
|
32
|
+
# @return [StandardError, nil]
|
|
33
|
+
#
|
|
34
|
+
def handled_exception
|
|
35
|
+
extra_kwargs.dig(:exceptions, :handled)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
##
|
|
39
|
+
# TODO: error.from_exception(exception)
|
|
40
|
+
# TODO: error.from_exception(exception, max_backtrace_size: 5)
|
|
41
|
+
# TODO: error("custom_message").from_exception(exception)
|
|
42
|
+
# TODO: error(code: :custom_code).from_exception(exception)
|
|
43
|
+
#
|
|
44
|
+
# @internal
|
|
45
|
+
# If `error` message is default, use `from_exception` message.
|
|
46
|
+
# If `error` code is default, use `from_exception` code.
|
|
47
|
+
#
|
|
48
|
+
# def from_exception(exception, **kwargs)
|
|
49
|
+
# # ...
|
|
50
|
+
# end
|
|
51
|
+
##
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
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
|
+
module ConvenientService
|
|
9
|
+
module Service
|
|
10
|
+
module Plugins
|
|
11
|
+
module HasJSendResult
|
|
12
|
+
module Entities
|
|
13
|
+
class Result
|
|
14
|
+
module Plugins
|
|
15
|
+
module CanBeFromUnhandledException
|
|
16
|
+
module Concern
|
|
17
|
+
include Support::Concern
|
|
18
|
+
|
|
19
|
+
instance_methods do
|
|
20
|
+
##
|
|
21
|
+
# @api public
|
|
22
|
+
#
|
|
23
|
+
# @return [Boolean]
|
|
24
|
+
#
|
|
25
|
+
def from_unhandled_exception?
|
|
26
|
+
Utils.to_bool(unhandled_exception)
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
##
|
|
30
|
+
# @api public
|
|
31
|
+
#
|
|
32
|
+
# @return [StandardError, nil]
|
|
33
|
+
#
|
|
34
|
+
def unhandled_exception
|
|
35
|
+
extra_kwargs.dig(:exceptions, :unhandled)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
@@ -11,6 +11,8 @@ require_relative "plugins/can_be_strict"
|
|
|
11
11
|
require_relative "plugins/can_be_from_fallback"
|
|
12
12
|
require_relative "plugins/can_have_fallbacks"
|
|
13
13
|
require_relative "plugins/can_be_from_exception"
|
|
14
|
+
require_relative "plugins/can_be_from_handled_exception"
|
|
15
|
+
require_relative "plugins/can_be_from_unhandled_exception"
|
|
14
16
|
require_relative "plugins/can_be_own_result"
|
|
15
17
|
require_relative "plugins/can_be_stubbed_result"
|
|
16
18
|
require_relative "plugins/can_be_used_in_service_aware_enumerables"
|
data/lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/middleware.rb
CHANGED
|
@@ -81,7 +81,7 @@ module ConvenientService
|
|
|
81
81
|
message: format_exception(exception, *args, **kwargs, &block),
|
|
82
82
|
code: :unhandled_exception
|
|
83
83
|
)
|
|
84
|
-
.copy(overrides: {kwargs: {
|
|
84
|
+
.copy(overrides: {kwargs: {exceptions: {unhandled: exception}}})
|
|
85
85
|
end
|
|
86
86
|
|
|
87
87
|
##
|
|
@@ -92,14 +92,14 @@ module ConvenientService
|
|
|
92
92
|
# @return [String]
|
|
93
93
|
#
|
|
94
94
|
def format_exception(exception, *args, **kwargs, &block)
|
|
95
|
-
|
|
95
|
+
Plugins::CanHaveFormattedExceptions.format_exception(exception, args: args, kwargs: kwargs, block: block, max_backtrace_size: max_backtrace_size)
|
|
96
96
|
end
|
|
97
97
|
|
|
98
98
|
##
|
|
99
99
|
# @return [Integer]
|
|
100
100
|
#
|
|
101
101
|
def max_backtrace_size
|
|
102
|
-
middleware_arguments.kwargs.fetch(:max_backtrace_size) {
|
|
102
|
+
middleware_arguments.kwargs.fetch(:max_backtrace_size) { Plugins::CanHaveFormattedExceptions.default_max_backtrace_size }
|
|
103
103
|
end
|
|
104
104
|
|
|
105
105
|
##
|
|
@@ -5,6 +5,4 @@
|
|
|
5
5
|
# @license LGPLv3 <https://www.gnu.org/licenses/lgpl-3.0.html>
|
|
6
6
|
##
|
|
7
7
|
|
|
8
|
-
require_relative "rescues_result_unhandled_exceptions/commands"
|
|
9
|
-
require_relative "rescues_result_unhandled_exceptions/constants"
|
|
10
8
|
require_relative "rescues_result_unhandled_exceptions/middleware"
|
|
@@ -30,6 +30,8 @@ require_relative "plugins/can_have_rollbacks"
|
|
|
30
30
|
require_relative "plugins/can_have_stubbed_results"
|
|
31
31
|
require_relative "plugins/can_not_be_inherited"
|
|
32
32
|
require_relative "plugins/can_have_recalculations"
|
|
33
|
+
require_relative "plugins/can_have_handled_exceptions"
|
|
34
|
+
require_relative "plugins/can_have_formatted_exceptions"
|
|
33
35
|
require_relative "plugins/collects_services_in_exception"
|
|
34
36
|
require_relative "plugins/forbids_convenient_service_entities_as_constructor_arguments"
|
|
35
37
|
require_relative "plugins/has_inspect"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: convenient_service
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.24.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marian Kostyk
|
|
@@ -425,6 +425,17 @@ files:
|
|
|
425
425
|
- lib/convenient_service/service/plugins/can_have_fallbacks/concern.rb
|
|
426
426
|
- lib/convenient_service/service/plugins/can_have_fallbacks/exceptions.rb
|
|
427
427
|
- lib/convenient_service/service/plugins/can_have_fallbacks/middleware.rb
|
|
428
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions.rb
|
|
429
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions/commands.rb
|
|
430
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions/commands/format_backtrace.rb
|
|
431
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions/commands/format_cause.rb
|
|
432
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions/commands/format_class.rb
|
|
433
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions/commands/format_exception.rb
|
|
434
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions/commands/format_line.rb
|
|
435
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions/commands/format_message.rb
|
|
436
|
+
- lib/convenient_service/service/plugins/can_have_formatted_exceptions/constants.rb
|
|
437
|
+
- lib/convenient_service/service/plugins/can_have_handled_exceptions.rb
|
|
438
|
+
- lib/convenient_service/service/plugins/can_have_handled_exceptions/concern.rb
|
|
428
439
|
- lib/convenient_service/service/plugins/can_have_recalculations.rb
|
|
429
440
|
- lib/convenient_service/service/plugins/can_have_recalculations/concern.rb
|
|
430
441
|
- lib/convenient_service/service/plugins/can_have_rollbacks.rb
|
|
@@ -594,6 +605,10 @@ files:
|
|
|
594
605
|
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_exception/concern.rb
|
|
595
606
|
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_fallback.rb
|
|
596
607
|
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_fallback/concern.rb
|
|
608
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_handled_exception.rb
|
|
609
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_handled_exception/concern.rb
|
|
610
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_unhandled_exception.rb
|
|
611
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_unhandled_exception/concern.rb
|
|
597
612
|
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_own_result.rb
|
|
598
613
|
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_own_result/concern.rb
|
|
599
614
|
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_strict.rb
|
|
@@ -731,14 +746,6 @@ files:
|
|
|
731
746
|
- lib/convenient_service/service/plugins/raises_on_not_result_return_value/exceptions.rb
|
|
732
747
|
- lib/convenient_service/service/plugins/raises_on_not_result_return_value/middleware.rb
|
|
733
748
|
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions.rb
|
|
734
|
-
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands.rb
|
|
735
|
-
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_backtrace.rb
|
|
736
|
-
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_cause.rb
|
|
737
|
-
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_class.rb
|
|
738
|
-
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_exception.rb
|
|
739
|
-
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_line.rb
|
|
740
|
-
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_message.rb
|
|
741
|
-
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/constants.rb
|
|
742
749
|
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/middleware.rb
|
|
743
750
|
- lib/convenient_service/service/plugins/sets_parent_to_foreign_result.rb
|
|
744
751
|
- lib/convenient_service/service/plugins/sets_parent_to_foreign_result/middleware.rb
|