convenient_service 0.12.0 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dev/.tmuxinator.yml +4 -0
- data/.github/workflows/ci.yml +2 -0
- data/.gitignore +18 -0
- data/.vscode/CacheItsValue.code-snippets +15 -0
- data/.vscode/DelegateTo.code-snippets +15 -0
- data/.vscode/cache_its_value.code-snippets +17 -0
- data/.vscode/comparison.code-snippets +41 -0
- data/.vscode/delegate_to.code-snippets +20 -0
- data/Appraisals +24 -2
- data/CHANGELOG.md +138 -0
- data/Gemfile +11 -6
- data/README.md +11 -3
- data/ROADMAP.md +5 -1
- data/Taskfile.yml +260 -55
- data/benchmark/commit_config/ips.rb +18 -0
- data/benchmark/commit_config/profile.rb +30 -0
- data/benchmark/empty_service/ips.rb +123 -0
- data/benchmark/has_committed_config/ips.rb +78 -0
- data/benchmark/has_committed_config/profile.rb +30 -0
- data/convenient_service.gemspec +125 -4
- data/gemfiles/.gitkeep +0 -0
- data/lib/convenient_service/alias.rb +3 -0
- data/lib/convenient_service/aliases.rb +0 -4
- data/lib/convenient_service/common/plugins/assigns_attributes_in_constructor/using_active_model_attribute_assignment/middleware.rb +3 -1
- data/lib/convenient_service/common/plugins/caches_constructor_arguments/concern.rb +22 -0
- data/lib/convenient_service/common/plugins/caches_constructor_arguments/middleware.rb +22 -0
- data/lib/convenient_service/common/plugins/caches_constructor_arguments.rb +4 -0
- data/lib/convenient_service/common/plugins/caches_return_value/middleware.rb +12 -8
- data/lib/convenient_service/common/plugins/can_be_copied/concern.rb +22 -5
- data/lib/convenient_service/common/plugins/can_have_user_provided_entity/commands/find_or_create_entity.rb +9 -7
- data/lib/convenient_service/common/plugins/can_have_user_provided_entity/{errors.rb → exceptions.rb} +4 -4
- data/lib/convenient_service/common/plugins/can_have_user_provided_entity.rb +1 -1
- data/lib/convenient_service/common/plugins/can_utilize_finite_loop/concern.rb +40 -0
- data/lib/convenient_service/common/plugins/can_utilize_finite_loop/constants.rb +21 -0
- data/lib/convenient_service/common/plugins/can_utilize_finite_loop.rb +4 -0
- data/lib/convenient_service/common/plugins/has_around_callbacks/{errors.rb → exceptions.rb} +2 -2
- data/lib/convenient_service/common/plugins/has_around_callbacks/middleware.rb +9 -3
- data/lib/convenient_service/common/plugins/has_around_callbacks.rb +1 -1
- data/lib/convenient_service/common/plugins/has_callbacks/entities/callback.rb +1 -1
- data/lib/convenient_service/common/plugins/has_callbacks/middleware.rb +7 -1
- data/lib/convenient_service/common/plugins/has_constructor/concern.rb +3 -4
- data/lib/convenient_service/common/plugins/has_constructor_without_initialize/concern.rb +1 -9
- data/lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb +1 -1
- data/lib/convenient_service/common/plugins/has_j_send_result_duck_short_syntax/concern.rb +68 -0
- data/lib/convenient_service/common/plugins/has_j_send_result_duck_short_syntax.rb +3 -0
- data/lib/convenient_service/common/plugins/normalizes_env/middleware.rb +3 -1
- data/lib/convenient_service/common/plugins.rb +2 -1
- data/lib/convenient_service/configs/awesome_print_inspect/aliases.rb +7 -0
- data/lib/convenient_service/configs/awesome_print_inspect.rb +59 -0
- data/lib/convenient_service/configs/minimal.rb +67 -5
- data/lib/convenient_service/configs/standard.rb +92 -30
- data/lib/convenient_service/core/aliases.rb +4 -5
- data/lib/convenient_service/core/concern/class_methods.rb +129 -0
- data/lib/convenient_service/core/concern/instance_methods.rb +76 -0
- data/lib/convenient_service/core/concern.rb +25 -0
- data/lib/convenient_service/core/entities/config/commands/track_method_missing_commit_trigger.rb +2 -2
- data/lib/convenient_service/core/entities/config/entities/concerns/entities/middleware/commands/cast_middleware.rb +2 -2
- data/lib/convenient_service/core/entities/config/entities/concerns/entities/middleware.rb +1 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/commands/cast_caller.rb +2 -2
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/concern/instance_methods.rb +9 -2
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/constants.rb +26 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller.rb +1 -3
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container/concern/instance_methods.rb +10 -3
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/base.rb +95 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable/entities/event.rb +95 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable/entities.rb +3 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable.rb +42 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/with.rb +50 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators.rb +6 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/commands/create_observable_middleware.rb +104 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/commands.rb +3 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern/class_methods.rb +115 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern/instance_methods.rb +70 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern.rb +32 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/constants.rb +36 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/structs/intended_method.rb +23 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/structs.rb +3 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base.rb +26 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/commands/create_observable_middleware.rb +90 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/commands.rb +3 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern/class_methods.rb +37 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern/instance_methods.rb +115 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern.rb +32 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/entities/method_chain.rb +86 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/entities.rb +3 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain.rb +34 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/classic.rb +42 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares.rb +6 -0
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/stack.rb +46 -11
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities.rb +2 -3
- data/lib/convenient_service/core/entities/config/entities/method_middlewares.rb +1 -1
- data/lib/convenient_service/core/entities/config/{errors.rb → exceptions.rb} +3 -3
- data/lib/convenient_service/core/entities/config.rb +19 -6
- data/lib/convenient_service/core/entities.rb +0 -1
- data/lib/convenient_service/core.rb +7 -5
- data/lib/convenient_service/dependencies/built_in.rb +11 -4
- data/lib/convenient_service/dependencies/extractions/active_support_backtrace_cleaner/backtrace_cleaner.rb +149 -0
- data/lib/convenient_service/dependencies/extractions/active_support_backtrace_cleaner.rb +15 -0
- data/lib/convenient_service/dependencies/extractions/active_support_concern/concern.rb +4 -3
- data/lib/convenient_service/dependencies/extractions/active_support_concern.rb +4 -3
- data/lib/convenient_service/dependencies.rb +256 -18
- data/lib/convenient_service/examples/dry/gemfile/dry_service/config.rb +19 -21
- data/lib/convenient_service/examples/dry/gemfile/services/assert_file_exists.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/assert_node_available.rb +2 -2
- data/lib/convenient_service/examples/dry/gemfile/services/assert_npm_package_available.rb +2 -2
- data/lib/convenient_service/examples/dry/gemfile/services/assert_valid_ruby_syntax.rb +2 -2
- data/lib/convenient_service/examples/dry/gemfile/services/format.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/format_body.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/format_gems_with_envs.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/format_gems_without_envs.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/format_header.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/parse_content.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/print_shell_command.rb +11 -4
- data/lib/convenient_service/examples/dry/gemfile/services/read_file_content.rb +1 -1
- data/lib/convenient_service/examples/dry/gemfile/services/{run_shell.rb → run_shell_command.rb} +10 -5
- data/lib/convenient_service/examples/dry/gemfile/services/strip_comments.rb +2 -2
- data/lib/convenient_service/examples/dry/gemfile/services.rb +3 -2
- data/lib/convenient_service/examples/dry/gemfile.rb +1 -1
- data/lib/convenient_service/examples/rails/gemfile/rails_service/config.rb +28 -30
- data/lib/convenient_service/examples/rails/gemfile/services/assert_file_exists.rb +2 -2
- data/lib/convenient_service/examples/rails/gemfile/services/assert_file_not_empty.rb +2 -2
- data/lib/convenient_service/examples/rails/gemfile/services/assert_node_available.rb +2 -2
- data/lib/convenient_service/examples/rails/gemfile/services/assert_npm_package_available.rb +3 -3
- data/lib/convenient_service/examples/rails/gemfile/services/assert_valid_ruby_syntax.rb +2 -2
- data/lib/convenient_service/examples/rails/gemfile/services/format.rb +2 -2
- data/lib/convenient_service/examples/rails/gemfile/services/format_body.rb +1 -1
- data/lib/convenient_service/examples/rails/gemfile/services/format_gems_with_envs.rb +1 -1
- data/lib/convenient_service/examples/rails/gemfile/services/format_gems_without_envs.rb +1 -1
- data/lib/convenient_service/examples/rails/gemfile/services/format_header.rb +1 -1
- data/lib/convenient_service/examples/rails/gemfile/services/merge_sections.rb +3 -3
- data/lib/convenient_service/examples/rails/gemfile/services/parse_content.rb +2 -2
- data/lib/convenient_service/examples/rails/gemfile/services/print_shell_command.rb +11 -4
- data/lib/convenient_service/examples/rails/gemfile/services/read_file_content.rb +2 -2
- data/lib/convenient_service/examples/rails/gemfile/services/replace_file_content.rb +3 -3
- data/lib/convenient_service/examples/rails/gemfile/services/{run_shell.rb → run_shell_command.rb} +11 -6
- data/lib/convenient_service/examples/rails/gemfile/services/strip_comments.rb +3 -3
- data/lib/convenient_service/examples/rails/gemfile/services.rb +2 -2
- data/lib/convenient_service/examples/rails/gemfile.rb +1 -1
- data/lib/convenient_service/examples/standard/cowsay/services/build_cloud.rb +1 -1
- data/lib/convenient_service/examples/standard/cowsay/services/build_cow.rb +1 -1
- data/lib/convenient_service/examples/standard/cowsay/services/print.rb +1 -1
- data/lib/convenient_service/examples/standard/cowsay.rb +1 -1
- data/lib/convenient_service/examples/standard/date_time/services/safe_parse.rb +31 -0
- data/lib/convenient_service/examples/standard/date_time/services.rb +3 -0
- data/lib/convenient_service/examples/standard/date_time.rb +23 -0
- data/lib/convenient_service/examples/standard/factorial/services/calculate.rb +49 -0
- data/lib/convenient_service/examples/standard/factorial/services.rb +3 -0
- data/lib/convenient_service/examples/standard/factorial/utils/timeout/with_timeout.rb +50 -0
- data/lib/convenient_service/examples/standard/factorial/utils/timeout.rb +21 -0
- data/lib/convenient_service/examples/standard/factorial/utils.rb +3 -0
- data/lib/convenient_service/examples/standard/factorial.rb +24 -0
- data/lib/convenient_service/examples/standard/gemfile/services/assert_file_exists.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/assert_file_not_empty.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/assert_node_available.rb +2 -2
- data/lib/convenient_service/examples/standard/gemfile/services/assert_npm_package_available.rb +2 -2
- data/lib/convenient_service/examples/standard/gemfile/services/assert_valid_ruby_syntax.rb +2 -2
- data/lib/convenient_service/examples/standard/gemfile/services/format.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/format_body.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/format_gems_with_envs.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/format_gems_without_envs.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/format_header.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/merge_sections.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/parse_content.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/print_shell_command.rb +15 -8
- data/lib/convenient_service/examples/standard/gemfile/services/read_file_content.rb +2 -2
- data/lib/convenient_service/examples/standard/gemfile/services/replace_file_content.rb +1 -1
- data/lib/convenient_service/examples/standard/gemfile/services/{run_shell.rb → run_shell_command.rb} +22 -5
- data/lib/convenient_service/examples/standard/gemfile/services/strip_comments.rb +2 -2
- data/lib/convenient_service/examples/standard/gemfile/services.rb +2 -2
- data/lib/convenient_service/examples/standard/gemfile.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/constants.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/entities/description.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/entities/format.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/entities/id.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/entities/logger.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/entities/request.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/entities/source.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/entities/tag.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/entities/title.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/apply_default_param_values.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/cast_params.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/extract_params_from_body.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/extract_params_from_path.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/filter_out_unpermitted_params.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/log_request_params.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/merge_params.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/prepare.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/validate_casted_params.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/services/validate_uncasted_params.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/utils/array/wrap.rb +2 -2
- data/lib/convenient_service/examples/standard/request_params/utils/array.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/utils/http/request/parse_body.rb +2 -2
- data/lib/convenient_service/examples/standard/request_params/utils/http/request/parse_path.rb +2 -2
- data/lib/convenient_service/examples/standard/request_params/utils/http/request.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/utils/integer/safe_parse.rb +2 -2
- data/lib/convenient_service/examples/standard/request_params/utils/integer.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/utils/json/safe_parse.rb +2 -2
- data/lib/convenient_service/examples/standard/request_params/utils/json.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/utils/object/blank.rb +2 -2
- data/lib/convenient_service/examples/standard/request_params/utils/object/present.rb +2 -2
- data/lib/convenient_service/examples/standard/request_params/utils/object.rb +1 -1
- data/lib/convenient_service/examples/standard/request_params/utils/url/valid.rb +47 -0
- data/lib/convenient_service/examples/standard/request_params/utils/url.rb +21 -0
- data/lib/convenient_service/examples/standard/request_params/utils.rb +1 -0
- data/lib/convenient_service/examples/standard/request_params.rb +1 -1
- data/lib/convenient_service/exception.rb +16 -0
- data/lib/convenient_service/feature.rb +0 -1
- data/lib/convenient_service/logger.rb +69 -24
- data/lib/convenient_service/rspec/helpers/custom/ignoring_exception/exceptions.rb +27 -0
- data/lib/convenient_service/rspec/helpers/custom/ignoring_exception.rb +51 -0
- data/lib/convenient_service/rspec/helpers/custom/stub_service/entities/result_spec.rb +2 -2
- data/lib/convenient_service/rspec/helpers/custom/stub_service/entities/stubbed_service.rb +20 -16
- data/lib/convenient_service/rspec/helpers/custom/wrap_method/entities/wrapped_method.rb +110 -53
- data/lib/convenient_service/rspec/helpers/custom/wrap_method/{errors.rb → exceptions.rb} +2 -2
- data/lib/convenient_service/rspec/helpers/custom/wrap_method.rb +31 -7
- data/lib/convenient_service/rspec/helpers/custom.rb +1 -1
- data/lib/convenient_service/rspec/helpers/{ignoring_error.rb → ignoring_exception.rb} +3 -3
- data/lib/convenient_service/rspec/helpers.rb +2 -2
- data/lib/convenient_service/rspec/matchers/custom/be_descendant_of.rb +1 -1
- data/lib/convenient_service/rspec/matchers/custom/cache_its_value.rb +20 -0
- data/lib/convenient_service/rspec/matchers/custom/call_chain_next.rb +103 -2
- data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings/sub_matchers/return_its_value.rb +3 -0
- data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings/sub_matchers/with_concrete_arguments.rb +1 -1
- data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings_collection/{errors.rb → exceptions.rb} +4 -4
- data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings_collection.rb +11 -11
- data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher.rb +5 -5
- data/lib/convenient_service/rspec/matchers/custom/delegate_to.rb +13 -3
- data/lib/convenient_service/rspec/matchers/custom/export.rb +9 -9
- data/lib/convenient_service/rspec/matchers/custom/have_abstract_method.rb +1 -1
- data/lib/convenient_service/rspec/matchers/custom/have_alias_method.rb +3 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/constants.rb +9 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/chain.rb +226 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_code_part.rb +61 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_data_part.rb +61 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_message_part.rb +61 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_parts.rb +121 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_service_part.rb +61 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_status_part.rb +68 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_step_part.rb +61 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_parts.rb +98 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_service_part.rb +68 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_step_part.rb +68 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands.rb +13 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base.rb +207 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error/commands/generate_got_jsend_attributes_part.rb +120 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error/commands.rb +3 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error.rb +34 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure/commands/generate_got_jsend_attributes_part.rb +121 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure/commands.rb +3 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure.rb +34 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/null.rb +147 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success/commands/generate_got_jsend_attributes_part.rb +96 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success/commands.rb +3 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success.rb +34 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers.rb +46 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result.rb +121 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_code.rb +97 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_data.rb +97 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_message.rb +97 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_service.rb +81 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_status.rb +92 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_step.rb +127 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_type.rb +89 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands.rb +10 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator.rb +123 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/entities.rb +5 -0
- data/lib/convenient_service/rspec/matchers/custom/results/base/{errors.rb → exceptions.rb} +8 -2
- data/lib/convenient_service/rspec/matchers/custom/results/base.rb +112 -149
- data/lib/convenient_service/rspec/matchers/custom/results/be_error.rb +6 -1
- data/lib/convenient_service/rspec/matchers/custom/results/be_failure.rb +6 -1
- data/lib/convenient_service/rspec/matchers/custom/results/be_not_error.rb +7 -2
- data/lib/convenient_service/rspec/matchers/custom/results/be_not_failure.rb +7 -2
- data/lib/convenient_service/rspec/matchers/custom/results/be_not_success.rb +7 -2
- data/lib/convenient_service/rspec/matchers/custom/results/be_success.rb +6 -1
- data/lib/convenient_service/rspec/matchers/results/be_error.rb +3 -0
- data/lib/convenient_service/rspec/matchers/results/be_failure.rb +3 -0
- data/lib/convenient_service/rspec/matchers/results/be_not_error.rb +3 -0
- data/lib/convenient_service/rspec/matchers/results/be_not_failure.rb +3 -0
- data/lib/convenient_service/rspec/matchers/results/be_not_success.rb +3 -0
- data/lib/convenient_service/rspec/matchers/results/be_success.rb +3 -0
- data/lib/convenient_service/service/plugins/can_have_fallback/concern.rb +93 -0
- data/lib/convenient_service/service/plugins/can_have_fallback/exceptions.rb +36 -0
- data/lib/convenient_service/service/plugins/can_have_fallback/middleware.rb +30 -0
- data/lib/convenient_service/service/plugins/can_have_fallback.rb +5 -0
- data/lib/convenient_service/service/plugins/can_have_method_steps/middleware.rb +5 -24
- data/lib/convenient_service/service/plugins/can_have_steps/concern.rb +3 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/cast_method.rb +5 -5
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/cast_method_factory.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/define_method_in_container.rb +2 -2
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/concern/instance_methods.rb +96 -26
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/alias.rb +2 -2
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/base.rb +49 -7
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/proc.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/raw.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/reassignment.rb +2 -2
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/usual.rb +2 -2
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/base.rb +27 -4
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/input.rb +2 -2
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/output.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/hash/base.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/key.rb +31 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/name.rb +31 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method/{errors.rb → exceptions.rb} +81 -15
- data/lib/convenient_service/service/plugins/can_have_steps/entities/method.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/service/concern/class_methods.rb +46 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/service/concern/instance_methods.rb +64 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/service/concern.rb +28 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/service.rb +7 -30
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/commands/cast_params.rb +39 -2
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/commands/extract_params.rb +2 -4
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/concern/instance_methods.rb +229 -64
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/{errors.rb → exceptions.rb} +3 -3
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_completed/concern.rb +44 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_completed.rb +3 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_executed/middleware.rb +36 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_executed.rb +3 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_printed/middleware.rb +32 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_printed.rb +3 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/concern.rb +37 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step.rb +6 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed/exceptions.rb +38 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed/middleware.rb +72 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed.rb +4 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/concern.rb +30 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step.rb +5 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/concern.rb +53 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/middleware.rb +34 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/result.rb +3 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback.rb +4 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_parent_result/middleware.rb +4 -2
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect/concern.rb +45 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_inspect/concern.rb +5 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins.rb +4 -0
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step/structs/params.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_steps/entities/step.rb +1 -1
- data/lib/convenient_service/service/plugins/can_have_steps/middleware.rb +38 -9
- data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/fetch_all_services_stubbed_results_cache.rb +30 -0
- data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/fetch_service_stubbed_results_cache.rb +43 -0
- data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/get_service_stubbed_result.rb +58 -0
- data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/set_service_stubbed_result.rb +66 -0
- data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands.rb +6 -0
- data/lib/convenient_service/service/plugins/can_have_stubbed_results/concern.rb +46 -0
- data/lib/convenient_service/service/plugins/can_have_stubbed_results/container.rb +17 -0
- data/lib/convenient_service/service/plugins/can_have_stubbed_results/middleware.rb +65 -0
- data/lib/convenient_service/service/plugins/can_have_stubbed_results.rb +6 -0
- data/lib/convenient_service/service/plugins/can_recalculate_result/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/collects_services_in_exception/commands/extract_service_details.rb +64 -0
- data/lib/convenient_service/service/plugins/collects_services_in_exception/commands.rb +3 -0
- data/lib/convenient_service/service/plugins/collects_services_in_exception/constants.rb +16 -0
- data/lib/convenient_service/service/plugins/collects_services_in_exception/middleware.rb +50 -0
- data/lib/convenient_service/service/plugins/collects_services_in_exception.rb +5 -0
- data/lib/convenient_service/service/plugins/counts_stubbed_results_invocations/middleware.rb +24 -0
- data/lib/convenient_service/service/plugins/counts_stubbed_results_invocations.rb +3 -0
- data/lib/convenient_service/service/plugins/has_awesome_print_inspect/concern.rb +39 -0
- data/lib/convenient_service/service/plugins/has_awesome_print_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/has_inspect/concern.rb +8 -1
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/commands/create_result_class.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/commands/is_result.rb +34 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/commands.rb +2 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/concern/class_methods.rb +21 -18
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/concern/instance_methods.rb +13 -12
- data/lib/convenient_service/service/plugins/has_j_send_result/concern.rb +22 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/constants.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/container.rb +21 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/aliases.rb +7 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_own_result/concern.rb +142 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_own_result.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_stubbed_result/concern.rb +30 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_stubbed_result.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status/concern.rb +30 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status/middleware.rb +43 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status.rb +4 -0
- data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_step → has_j_send_result/entities/result/plugins/can_have_fallback}/concern.rb +7 -4
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_fallback.rb +3 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/can_have_parent_result/concern.rb +8 -5
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/can_have_parent_result/constants.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/can_have_parent_result.rb +0 -2
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_step/concern.rb +30 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_step.rb +3 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/can_recalculate_result/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect/concern.rb +38 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_inspect/concern.rb +2 -3
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/cast_j_send_attributes.rb +99 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/commands/create_code_class.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/commands/create_data_class.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/commands/create_message_class.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/commands/create_status_class.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/concern/class_methods.rb +125 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/concern/instance_methods.rb +58 -14
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/commands/is_code.rb +49 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/commands.rb +3 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern/class_methods.rb +14 -2
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern/instance_methods.rb +123 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/aliases.rb +7 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_awesome_print_inspect/concern.rb +46 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_awesome_print_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_inspect/concern.rb +38 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins.rb +5 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/code.rb +3 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/commands/is_data.rb +49 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/commands.rb +3 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern/class_methods.rb +14 -2
- 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 +183 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/aliases.rb +7 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_awesome_print_inspect/concern.rb +46 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_awesome_print_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_inspect/commands/generate_inspect_output.rb +77 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_inspect/commands.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_inspect/concern.rb +41 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_inspect.rb +4 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins.rb +5 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/data.rb +3 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/commands/is_message.rb +49 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/commands.rb +3 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern/class_methods.rb +14 -2
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern/instance_methods.rb +116 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/aliases.rb +7 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_awesome_print_inspect/concern.rb +46 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_awesome_print_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_inspect/concern.rb +38 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins.rb +5 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/message.rb +3 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/commands/is_status.rb +49 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/commands.rb +3 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern/class_methods.rb +14 -2
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern/instance_methods.rb +31 -6
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/aliases.rb +7 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_awesome_print_inspect/concern.rb +46 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_awesome_print_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_inspect/concern.rb +38 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_inspect.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins.rb +5 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities/status.rb +3 -1
- data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_j_send_status_and_attributes/errors.rb → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/exceptions.rb} +3 -3
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/middleware.rb +5 -3
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/structs/j_send_attributes.rb +2 -2
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter/concern.rb +30 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter/middleware.rb +38 -0
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter.rb +4 -0
- data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/raises_on_not_checked_result_status/errors.rb → has_j_send_result/entities/result/plugins/raises_on_not_checked_result_status/exceptions.rb} +3 -3
- data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/raises_on_not_checked_result_status/middleware.rb +47 -0
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/raises_on_not_checked_result_status.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins.rb +6 -3
- data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result/exceptions.rb +21 -0
- data/lib/convenient_service/service/plugins/has_j_send_result.rb +8 -0
- data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_active_model_validations/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_active_model_validations/middleware.rb +4 -2
- data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_dry_validation/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_dry_validation/middleware.rb +5 -3
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/error/commands/assert_args_count_lower_than_three.rb +2 -2
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/error/commands/assert_either_args_or_kwargs_are_passed.rb +2 -2
- data/lib/convenient_service/service/plugins/{has_result_short_syntax/error/errors.rb → has_j_send_result_short_syntax/error/exceptions.rb} +4 -4
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/error/middleware.rb +5 -3
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/error.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/commands/assert_kwargs_contain_only_j_send_keys.rb +53 -0
- data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/commands.rb +3 -0
- data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/exceptions.rb +29 -0
- data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/middleware.rb +23 -0
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/failure.rb +1 -1
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/success/commands/refute_kwargs_contain_data_and_extra_keys.rb +2 -2
- data/lib/convenient_service/service/plugins/{has_result_short_syntax/success/errors.rb → has_j_send_result_short_syntax/success/exceptions.rb} +3 -3
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/success/middleware.rb +5 -3
- data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/success.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax.rb +6 -0
- data/lib/convenient_service/service/plugins/{has_result_status_check_short_syntax → has_j_send_result_status_check_short_syntax}/concern.rb +1 -1
- data/lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax.rb +3 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/concern.rb +24 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_lines.rb +94 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_method_step_lines.rb +115 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_result_lines.rb +105 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_service_lines.rb +88 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_service_step_lines.rb +127 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands.rb +7 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code.rb +90 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/settings.rb +144 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/template.rb +85 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities.rb +5 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/templates/flowchart.html.erb +95 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart.rb +108 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities.rb +3 -0
- data/lib/convenient_service/service/plugins/has_mermaid_flowchart.rb +4 -0
- data/lib/convenient_service/service/plugins/has_result/concern.rb +17 -6
- data/lib/convenient_service/service/plugins/has_result/exceptions.rb +21 -0
- data/lib/convenient_service/service/plugins/has_result.rb +1 -5
- data/lib/convenient_service/service/plugins/raises_on_double_result/{errors.rb → exceptions.rb} +2 -2
- data/lib/convenient_service/service/plugins/raises_on_double_result/middleware.rb +11 -9
- data/lib/convenient_service/service/plugins/raises_on_double_result.rb +1 -1
- data/lib/convenient_service/service/plugins/raises_on_not_result_return_value/exceptions.rb +24 -0
- data/lib/convenient_service/service/plugins/raises_on_not_result_return_value/middleware.rb +25 -0
- data/lib/convenient_service/service/plugins/raises_on_not_result_return_value.rb +4 -0
- data/lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/middleware.rb +38 -4
- data/lib/convenient_service/service/plugins/sets_parent_to_foreign_result/middleware.rb +56 -0
- data/lib/convenient_service/service/plugins/sets_parent_to_foreign_result.rb +3 -0
- data/lib/convenient_service/service/plugins/wraps_result_in_db_transaction/middleware.rb +3 -1
- data/lib/convenient_service/service/plugins.rb +14 -6
- data/lib/convenient_service/support/abstract_method/{errors.rb → exceptions.rb} +2 -2
- data/lib/convenient_service/support/abstract_method.rb +2 -2
- data/lib/convenient_service/support/cache/constants.rb +36 -0
- data/lib/convenient_service/support/cache/entities/caches/array/entities/pair.rb +52 -0
- data/lib/convenient_service/support/cache/entities/caches/array/entities.rb +3 -0
- data/lib/convenient_service/support/cache/entities/caches/array.rb +135 -0
- data/lib/convenient_service/support/cache/entities/caches/base.rb +112 -0
- data/lib/convenient_service/support/cache/entities/caches/hash.rb +113 -0
- data/lib/convenient_service/support/cache/entities/caches/thread_safe_array.rb +89 -0
- data/lib/convenient_service/support/cache/entities/caches.rb +8 -0
- data/lib/convenient_service/support/cache/entities/key.rb +102 -0
- data/lib/convenient_service/support/cache/entities.rb +4 -0
- data/lib/convenient_service/support/cache/exceptions.rb +34 -0
- data/lib/convenient_service/support/cache.rb +16 -143
- data/lib/convenient_service/support/castable/{errors.rb → exceptions.rb} +3 -3
- data/lib/convenient_service/support/castable.rb +2 -2
- data/lib/convenient_service/support/command.rb +42 -3
- data/lib/convenient_service/support/copyable.rb +7 -23
- data/lib/convenient_service/support/counter.rb +7 -8
- data/lib/convenient_service/support/dependency_container/commands/assert_valid_container.rb +2 -2
- data/lib/convenient_service/support/dependency_container/commands/assert_valid_method.rb +8 -8
- data/lib/convenient_service/support/dependency_container/commands/assert_valid_scope.rb +2 -2
- data/lib/convenient_service/support/dependency_container/entities/method.rb +49 -12
- data/lib/convenient_service/support/dependency_container/entities/method_collection.rb +3 -3
- data/lib/convenient_service/support/dependency_container/{errors.rb → exceptions.rb} +5 -5
- data/lib/convenient_service/support/dependency_container/export.rb +4 -4
- data/lib/convenient_service/support/dependency_container/import.rb +7 -4
- data/lib/convenient_service/support/dependency_container.rb +1 -1
- data/lib/convenient_service/support/finite_loop.rb +8 -8
- data/lib/convenient_service/support/gems/logger.rb +37 -0
- data/lib/convenient_service/support/gems/paint.rb +37 -0
- data/lib/convenient_service/support/gems.rb +2 -0
- data/lib/convenient_service/support/safe_method.rb +1 -1
- data/lib/convenient_service/support/thread_safe_counter.rb +9 -0
- data/lib/convenient_service/support.rb +1 -0
- data/lib/convenient_service/utils/array/contain_exactly.rb +1 -5
- data/lib/convenient_service/utils/array/{errors.rb → exceptions.rb} +2 -2
- data/lib/convenient_service/utils/array/limited_push.rb +54 -0
- data/lib/convenient_service/utils/array/merge.rb +3 -3
- data/lib/convenient_service/utils/array.rb +6 -1
- data/lib/convenient_service/utils/class/display_name.rb +49 -0
- data/lib/convenient_service/utils/class.rb +20 -0
- data/lib/convenient_service/utils/hash/assert_valid_keys.rb +50 -0
- data/lib/convenient_service/utils/hash/except.rb +1 -1
- data/lib/convenient_service/utils/hash/triple_equality_compare.rb +51 -0
- data/lib/convenient_service/utils/hash.rb +10 -0
- data/lib/convenient_service/utils/method/defined.rb +50 -6
- data/lib/convenient_service/utils/module/class_method_defined.rb +22 -2
- data/lib/convenient_service/utils/module/get_own_instance_method.rb +3 -0
- data/lib/convenient_service/utils/module/instance_method_defined.rb +22 -2
- data/lib/convenient_service/utils/object/clamp_class.rb +77 -0
- data/lib/convenient_service/utils/object/duck_class.rb +112 -0
- data/lib/convenient_service/utils/object/memoize_including_falsy_values.rb +1 -1
- data/lib/convenient_service/utils/object.rb +19 -10
- data/lib/convenient_service/utils/string/truncate.rb +69 -0
- data/lib/convenient_service/utils/string.rb +5 -0
- data/lib/convenient_service/utils.rb +21 -0
- data/lib/convenient_service/version.rb +1 -1
- data/lib/convenient_service.rb +14 -7
- data/minitest.rb +30 -0
- metadata +575 -153
- data/lib/convenient_service/common/plugins/caches_constructor_params/concern.rb +0 -22
- data/lib/convenient_service/common/plugins/caches_constructor_params/entities/constructor_params.rb +0 -34
- data/lib/convenient_service/common/plugins/caches_constructor_params/entities.rb +0 -3
- data/lib/convenient_service/common/plugins/caches_constructor_params/middleware.rb +0 -17
- data/lib/convenient_service/common/plugins/caches_constructor_params.rb +0 -5
- data/lib/convenient_service/core/class_methods.rb +0 -96
- data/lib/convenient_service/core/entities/classic_middleware.rb +0 -32
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/chain.rb +0 -71
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware.rb +0 -131
- data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creator.rb +0 -62
- data/lib/convenient_service/core/instance_methods.rb +0 -56
- data/lib/convenient_service/error.rb +0 -16
- data/lib/convenient_service/rspec/helpers/custom/ignoring_error.rb +0 -32
- data/lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_method_step.rb +0 -74
- data/lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_result_method_step.rb +0 -66
- data/lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_service_step.rb +0 -48
- data/lib/convenient_service/rspec/matchers/custom/results/base/commands/generate_expected_step_part.rb +0 -42
- data/lib/convenient_service/rspec/matchers/custom/results/base/commands/generate_got_step_part.rb +0 -42
- data/lib/convenient_service/rspec/matchers/custom/results/base/commands/match_result_step.rb +0 -89
- data/lib/convenient_service/rspec/matchers/custom/results/base/commands.rb +0 -10
- data/lib/convenient_service/service/plugins/can_have_result_step/middleware.rb +0 -43
- data/lib/convenient_service/service/plugins/can_have_result_step.rb +0 -3
- data/lib/convenient_service/service/plugins/can_have_steps/entities/service/class_methods.rb +0 -32
- data/lib/convenient_service/service/plugins/can_have_stubbed_result/concern.rb +0 -59
- data/lib/convenient_service/service/plugins/can_have_stubbed_result/middleware.rb +0 -36
- data/lib/convenient_service/service/plugins/can_have_stubbed_result.rb +0 -4
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/aliases.rb +0 -7
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/initialize/middleware.rb +0 -27
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/initialize.rb +0 -3
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/to_kwargs/middleware.rb +0 -25
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/to_kwargs.rb +0 -3
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/commands/cast_j_send_attributes.rb +0 -37
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/concern/class_methods.rb +0 -69
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern/instance_methods.rb +0 -65
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern/instance_methods.rb +0 -94
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern/instance_methods.rb +0 -58
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb +0 -62
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax.rb +0 -3
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/initialize/middleware.rb +0 -27
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/initialize.rb +0 -3
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/to_kwargs/middleware.rb +0 -25
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/to_kwargs.rb +0 -3
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step.rb +0 -5
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/marks_result_status_as_checked/middleware.rb +0 -25
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/marks_result_status_as_checked.rb +0 -3
- data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/raises_on_not_checked_result_status/middleware.rb +0 -33
- data/lib/convenient_service/service/plugins/has_result/errors.rb +0 -34
- data/lib/convenient_service/service/plugins/has_result/middleware.rb +0 -19
- data/lib/convenient_service/service/plugins/has_result_short_syntax/failure/commands/refute_kwargs_contain_data_and_extra_keys.rb +0 -29
- data/lib/convenient_service/service/plugins/has_result_short_syntax/failure/errors.rb +0 -28
- data/lib/convenient_service/service/plugins/has_result_short_syntax/failure/middleware.rb +0 -19
- data/lib/convenient_service/service/plugins/has_result_short_syntax/success/commands.rb +0 -3
- data/lib/convenient_service/service/plugins/has_result_short_syntax.rb +0 -6
- data/lib/convenient_service/service/plugins/has_result_status_check_short_syntax.rb +0 -3
- data/lib/convenient_service/services/run_method_in_organizer.rb +0 -28
- data/lib/convenient_service/services/run_own_method_in_organizer.rb +0 -64
- data/lib/convenient_service/support/cache/key.rb +0 -100
- data/lib/convenient_service/utils/object/resolve_class.rb +0 -56
- /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/can_recalculate_result.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_inspect.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/commands.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/entities.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_j_send_status_and_attributes/structs.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_active_model_validations.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_dry_validation.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/error/commands.rb +0 -0
- /data/lib/convenient_service/service/plugins/{has_result_short_syntax/failure → has_j_send_result_short_syntax/success}/commands.rb +0 -0
metadata
CHANGED
@@ -1,17 +1,31 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: convenient_service
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marian Kostyk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appraisal
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.5.0
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.5.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: awesome_print
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
16
30
|
requirements:
|
17
31
|
- - ">="
|
@@ -25,7 +39,21 @@ dependencies:
|
|
25
39
|
- !ruby/object:Gem::Version
|
26
40
|
version: '0'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
42
|
+
name: benchmark-ips
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.12.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.12.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: break
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
30
58
|
requirements:
|
31
59
|
- - ">="
|
@@ -66,6 +94,20 @@ dependencies:
|
|
66
94
|
- - ">="
|
67
95
|
- !ruby/object:Gem::Version
|
68
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: debug
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
69
111
|
- !ruby/object:Gem::Dependency
|
70
112
|
name: faker
|
71
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,6 +164,62 @@ dependencies:
|
|
122
164
|
- - ">="
|
123
165
|
- !ruby/object:Gem::Version
|
124
166
|
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: memory_profiler
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: minitest
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: 5.18.0
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - "~>"
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: 5.18.0
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: mutant
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - "~>"
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: 0.11.21
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - "~>"
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: 0.11.21
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: mutant-rspec
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - "~>"
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: 0.11.21
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - "~>"
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: 0.11.21
|
125
223
|
- !ruby/object:Gem::Dependency
|
126
224
|
name: paint
|
127
225
|
requirement: !ruby/object:Gem::Requirement
|
@@ -206,34 +304,48 @@ dependencies:
|
|
206
304
|
- - "~>"
|
207
305
|
- !ruby/object:Gem::Version
|
208
306
|
version: 3.11.0
|
307
|
+
- !ruby/object:Gem::Dependency
|
308
|
+
name: rspec-benchmark
|
309
|
+
requirement: !ruby/object:Gem::Requirement
|
310
|
+
requirements:
|
311
|
+
- - "~>"
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
version: 0.6.0
|
314
|
+
type: :development
|
315
|
+
prerelease: false
|
316
|
+
version_requirements: !ruby/object:Gem::Requirement
|
317
|
+
requirements:
|
318
|
+
- - "~>"
|
319
|
+
- !ruby/object:Gem::Version
|
320
|
+
version: 0.6.0
|
209
321
|
- !ruby/object:Gem::Dependency
|
210
322
|
name: rubocop
|
211
323
|
requirement: !ruby/object:Gem::Requirement
|
212
324
|
requirements:
|
213
325
|
- - "~>"
|
214
326
|
- !ruby/object:Gem::Version
|
215
|
-
version: 1.
|
327
|
+
version: 1.52.0
|
216
328
|
type: :development
|
217
329
|
prerelease: false
|
218
330
|
version_requirements: !ruby/object:Gem::Requirement
|
219
331
|
requirements:
|
220
332
|
- - "~>"
|
221
333
|
- !ruby/object:Gem::Version
|
222
|
-
version: 1.
|
334
|
+
version: 1.52.0
|
223
335
|
- !ruby/object:Gem::Dependency
|
224
336
|
name: rubocop-rspec
|
225
337
|
requirement: !ruby/object:Gem::Requirement
|
226
338
|
requirements:
|
227
|
-
- - "
|
339
|
+
- - "~>"
|
228
340
|
- !ruby/object:Gem::Version
|
229
|
-
version:
|
341
|
+
version: 2.22.0
|
230
342
|
type: :development
|
231
343
|
prerelease: false
|
232
344
|
version_requirements: !ruby/object:Gem::Requirement
|
233
345
|
requirements:
|
234
|
-
- - "
|
346
|
+
- - "~>"
|
235
347
|
- !ruby/object:Gem::Version
|
236
|
-
version:
|
348
|
+
version: 2.22.0
|
237
349
|
- !ruby/object:Gem::Dependency
|
238
350
|
name: tty-prompt
|
239
351
|
requirement: !ruby/object:Gem::Requirement
|
@@ -252,16 +364,16 @@ dependencies:
|
|
252
364
|
name: standard
|
253
365
|
requirement: !ruby/object:Gem::Requirement
|
254
366
|
requirements:
|
255
|
-
- - "
|
367
|
+
- - "~>"
|
256
368
|
- !ruby/object:Gem::Version
|
257
|
-
version:
|
369
|
+
version: 1.30.1
|
258
370
|
type: :development
|
259
371
|
prerelease: false
|
260
372
|
version_requirements: !ruby/object:Gem::Requirement
|
261
373
|
requirements:
|
262
|
-
- - "
|
374
|
+
- - "~>"
|
263
375
|
- !ruby/object:Gem::Version
|
264
|
-
version:
|
376
|
+
version: 1.30.1
|
265
377
|
- !ruby/object:Gem::Dependency
|
266
378
|
name: simplecov
|
267
379
|
requirement: !ruby/object:Gem::Requirement
|
@@ -290,6 +402,34 @@ dependencies:
|
|
290
402
|
- - ">="
|
291
403
|
- !ruby/object:Gem::Version
|
292
404
|
version: '0'
|
405
|
+
- !ruby/object:Gem::Dependency
|
406
|
+
name: shoulda-context
|
407
|
+
requirement: !ruby/object:Gem::Requirement
|
408
|
+
requirements:
|
409
|
+
- - "~>"
|
410
|
+
- !ruby/object:Gem::Version
|
411
|
+
version: 2.0.0
|
412
|
+
type: :development
|
413
|
+
prerelease: false
|
414
|
+
version_requirements: !ruby/object:Gem::Requirement
|
415
|
+
requirements:
|
416
|
+
- - "~>"
|
417
|
+
- !ruby/object:Gem::Version
|
418
|
+
version: 2.0.0
|
419
|
+
- !ruby/object:Gem::Dependency
|
420
|
+
name: stackprof
|
421
|
+
requirement: !ruby/object:Gem::Requirement
|
422
|
+
requirements:
|
423
|
+
- - "~>"
|
424
|
+
- !ruby/object:Gem::Version
|
425
|
+
version: 0.2.25
|
426
|
+
type: :development
|
427
|
+
prerelease: false
|
428
|
+
version_requirements: !ruby/object:Gem::Requirement
|
429
|
+
requirements:
|
430
|
+
- - "~>"
|
431
|
+
- !ruby/object:Gem::Version
|
432
|
+
version: 0.2.25
|
293
433
|
- !ruby/object:Gem::Dependency
|
294
434
|
name: webrick
|
295
435
|
requirement: !ruby/object:Gem::Requirement
|
@@ -332,6 +472,90 @@ dependencies:
|
|
332
472
|
- - ">="
|
333
473
|
- !ruby/object:Gem::Version
|
334
474
|
version: '0'
|
475
|
+
- !ruby/object:Gem::Dependency
|
476
|
+
name: service_actor
|
477
|
+
requirement: !ruby/object:Gem::Requirement
|
478
|
+
requirements:
|
479
|
+
- - "~>"
|
480
|
+
- !ruby/object:Gem::Version
|
481
|
+
version: 3.7.0
|
482
|
+
type: :development
|
483
|
+
prerelease: false
|
484
|
+
version_requirements: !ruby/object:Gem::Requirement
|
485
|
+
requirements:
|
486
|
+
- - "~>"
|
487
|
+
- !ruby/object:Gem::Version
|
488
|
+
version: 3.7.0
|
489
|
+
- !ruby/object:Gem::Dependency
|
490
|
+
name: interactor
|
491
|
+
requirement: !ruby/object:Gem::Requirement
|
492
|
+
requirements:
|
493
|
+
- - "~>"
|
494
|
+
- !ruby/object:Gem::Version
|
495
|
+
version: 3.1.2
|
496
|
+
type: :development
|
497
|
+
prerelease: false
|
498
|
+
version_requirements: !ruby/object:Gem::Requirement
|
499
|
+
requirements:
|
500
|
+
- - "~>"
|
501
|
+
- !ruby/object:Gem::Version
|
502
|
+
version: 3.1.2
|
503
|
+
- !ruby/object:Gem::Dependency
|
504
|
+
name: trailblazer-operation
|
505
|
+
requirement: !ruby/object:Gem::Requirement
|
506
|
+
requirements:
|
507
|
+
- - "~>"
|
508
|
+
- !ruby/object:Gem::Version
|
509
|
+
version: 0.10.1
|
510
|
+
type: :development
|
511
|
+
prerelease: false
|
512
|
+
version_requirements: !ruby/object:Gem::Requirement
|
513
|
+
requirements:
|
514
|
+
- - "~>"
|
515
|
+
- !ruby/object:Gem::Version
|
516
|
+
version: 0.10.1
|
517
|
+
- !ruby/object:Gem::Dependency
|
518
|
+
name: active_interaction
|
519
|
+
requirement: !ruby/object:Gem::Requirement
|
520
|
+
requirements:
|
521
|
+
- - "~>"
|
522
|
+
- !ruby/object:Gem::Version
|
523
|
+
version: 5.3.0
|
524
|
+
type: :development
|
525
|
+
prerelease: false
|
526
|
+
version_requirements: !ruby/object:Gem::Requirement
|
527
|
+
requirements:
|
528
|
+
- - "~>"
|
529
|
+
- !ruby/object:Gem::Version
|
530
|
+
version: 5.3.0
|
531
|
+
- !ruby/object:Gem::Dependency
|
532
|
+
name: light-service
|
533
|
+
requirement: !ruby/object:Gem::Requirement
|
534
|
+
requirements:
|
535
|
+
- - "~>"
|
536
|
+
- !ruby/object:Gem::Version
|
537
|
+
version: 0.18.0
|
538
|
+
type: :development
|
539
|
+
prerelease: false
|
540
|
+
version_requirements: !ruby/object:Gem::Requirement
|
541
|
+
requirements:
|
542
|
+
- - "~>"
|
543
|
+
- !ruby/object:Gem::Version
|
544
|
+
version: 0.18.0
|
545
|
+
- !ruby/object:Gem::Dependency
|
546
|
+
name: mutations
|
547
|
+
requirement: !ruby/object:Gem::Requirement
|
548
|
+
requirements:
|
549
|
+
- - "~>"
|
550
|
+
- !ruby/object:Gem::Version
|
551
|
+
version: 0.9.1
|
552
|
+
type: :development
|
553
|
+
prerelease: false
|
554
|
+
version_requirements: !ruby/object:Gem::Requirement
|
555
|
+
requirements:
|
556
|
+
- - "~>"
|
557
|
+
- !ruby/object:Gem::Version
|
558
|
+
version: 0.9.1
|
335
559
|
description: 'Yet another approach to revisit the service object pattern in Ruby,
|
336
560
|
but this time focusing on the unique, opinionated, moderately obtrusive, but not
|
337
561
|
mandatory features.
|
@@ -357,6 +581,11 @@ files:
|
|
357
581
|
- ".rubocop_rspec.yml"
|
358
582
|
- ".ruby-version"
|
359
583
|
- ".tool-versions"
|
584
|
+
- ".vscode/CacheItsValue.code-snippets"
|
585
|
+
- ".vscode/DelegateTo.code-snippets"
|
586
|
+
- ".vscode/cache_its_value.code-snippets"
|
587
|
+
- ".vscode/comparison.code-snippets"
|
588
|
+
- ".vscode/delegate_to.code-snippets"
|
360
589
|
- ".yardopts"
|
361
590
|
- Appraisals
|
362
591
|
- CHANGELOG.md
|
@@ -366,6 +595,11 @@ files:
|
|
366
595
|
- ROADMAP.md
|
367
596
|
- Rakefile
|
368
597
|
- Taskfile.yml
|
598
|
+
- benchmark/commit_config/ips.rb
|
599
|
+
- benchmark/commit_config/profile.rb
|
600
|
+
- benchmark/empty_service/ips.rb
|
601
|
+
- benchmark/has_committed_config/ips.rb
|
602
|
+
- benchmark/has_committed_config/profile.rb
|
369
603
|
- convenient_service.gemspec
|
370
604
|
- coverage/.gitkeep
|
371
605
|
- docker/2.7/Dockerfile
|
@@ -375,7 +609,9 @@ files:
|
|
375
609
|
- docker/jruby-9.4/Dockerfile
|
376
610
|
- docker/truffleruby-22.3/Dockerfile
|
377
611
|
- env.rb
|
612
|
+
- gemfiles/.gitkeep
|
378
613
|
- lib/convenient_service.rb
|
614
|
+
- lib/convenient_service/alias.rb
|
379
615
|
- lib/convenient_service/aliases.rb
|
380
616
|
- lib/convenient_service/common.rb
|
381
617
|
- lib/convenient_service/common/plugins.rb
|
@@ -385,11 +621,9 @@ files:
|
|
385
621
|
- lib/convenient_service/common/plugins/assigns_attributes_in_constructor/using_active_model_attribute_assignment/middleware.rb
|
386
622
|
- lib/convenient_service/common/plugins/assigns_attributes_in_constructor/using_dry_initializer.rb
|
387
623
|
- lib/convenient_service/common/plugins/assigns_attributes_in_constructor/using_dry_initializer/concern.rb
|
388
|
-
- lib/convenient_service/common/plugins/
|
389
|
-
- lib/convenient_service/common/plugins/
|
390
|
-
- lib/convenient_service/common/plugins/
|
391
|
-
- lib/convenient_service/common/plugins/caches_constructor_params/entities/constructor_params.rb
|
392
|
-
- lib/convenient_service/common/plugins/caches_constructor_params/middleware.rb
|
624
|
+
- lib/convenient_service/common/plugins/caches_constructor_arguments.rb
|
625
|
+
- lib/convenient_service/common/plugins/caches_constructor_arguments/concern.rb
|
626
|
+
- lib/convenient_service/common/plugins/caches_constructor_arguments/middleware.rb
|
393
627
|
- lib/convenient_service/common/plugins/caches_return_value.rb
|
394
628
|
- lib/convenient_service/common/plugins/caches_return_value/middleware.rb
|
395
629
|
- lib/convenient_service/common/plugins/can_be_copied.rb
|
@@ -398,10 +632,13 @@ files:
|
|
398
632
|
- lib/convenient_service/common/plugins/can_have_user_provided_entity/commands.rb
|
399
633
|
- lib/convenient_service/common/plugins/can_have_user_provided_entity/commands/find_or_create_entity.rb
|
400
634
|
- lib/convenient_service/common/plugins/can_have_user_provided_entity/container.rb
|
401
|
-
- lib/convenient_service/common/plugins/can_have_user_provided_entity/
|
635
|
+
- lib/convenient_service/common/plugins/can_have_user_provided_entity/exceptions.rb
|
636
|
+
- lib/convenient_service/common/plugins/can_utilize_finite_loop.rb
|
637
|
+
- lib/convenient_service/common/plugins/can_utilize_finite_loop/concern.rb
|
638
|
+
- lib/convenient_service/common/plugins/can_utilize_finite_loop/constants.rb
|
402
639
|
- lib/convenient_service/common/plugins/has_around_callbacks.rb
|
403
640
|
- lib/convenient_service/common/plugins/has_around_callbacks/concern.rb
|
404
|
-
- lib/convenient_service/common/plugins/has_around_callbacks/
|
641
|
+
- lib/convenient_service/common/plugins/has_around_callbacks/exceptions.rb
|
405
642
|
- lib/convenient_service/common/plugins/has_around_callbacks/middleware.rb
|
406
643
|
- lib/convenient_service/common/plugins/has_attributes/using_active_model_attributes.rb
|
407
644
|
- lib/convenient_service/common/plugins/has_attributes/using_active_model_attributes/concern.rb
|
@@ -432,18 +669,23 @@ files:
|
|
432
669
|
- lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/aliases.rb
|
433
670
|
- lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache.rb
|
434
671
|
- lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb
|
672
|
+
- lib/convenient_service/common/plugins/has_j_send_result_duck_short_syntax.rb
|
673
|
+
- lib/convenient_service/common/plugins/has_j_send_result_duck_short_syntax/concern.rb
|
435
674
|
- lib/convenient_service/common/plugins/normalizes_env.rb
|
436
675
|
- lib/convenient_service/common/plugins/normalizes_env/middleware.rb
|
437
676
|
- lib/convenient_service/configs.rb
|
438
677
|
- lib/convenient_service/configs/aliases.rb
|
678
|
+
- lib/convenient_service/configs/awesome_print_inspect.rb
|
679
|
+
- lib/convenient_service/configs/awesome_print_inspect/aliases.rb
|
439
680
|
- lib/convenient_service/configs/minimal.rb
|
440
681
|
- lib/convenient_service/configs/standard.rb
|
441
682
|
- lib/convenient_service/core.rb
|
442
683
|
- lib/convenient_service/core/aliases.rb
|
443
|
-
- lib/convenient_service/core/
|
684
|
+
- lib/convenient_service/core/concern.rb
|
685
|
+
- lib/convenient_service/core/concern/class_methods.rb
|
686
|
+
- lib/convenient_service/core/concern/instance_methods.rb
|
444
687
|
- lib/convenient_service/core/constants.rb
|
445
688
|
- lib/convenient_service/core/entities.rb
|
446
|
-
- lib/convenient_service/core/entities/classic_middleware.rb
|
447
689
|
- lib/convenient_service/core/entities/config.rb
|
448
690
|
- lib/convenient_service/core/entities/config/commands.rb
|
449
691
|
- lib/convenient_service/core/entities/config/commands/track_method_missing_commit_trigger.rb
|
@@ -466,7 +708,7 @@ files:
|
|
466
708
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/concern.rb
|
467
709
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/concern/class_methods.rb
|
468
710
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/concern/instance_methods.rb
|
469
|
-
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/
|
711
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/constants.rb
|
470
712
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container.rb
|
471
713
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container/commands.rb
|
472
714
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container/commands/cast_container.rb
|
@@ -474,14 +716,38 @@ files:
|
|
474
716
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container/concern.rb
|
475
717
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container/concern/class_methods.rb
|
476
718
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container/concern/instance_methods.rb
|
477
|
-
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/
|
478
|
-
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/
|
719
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators.rb
|
720
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/base.rb
|
721
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable.rb
|
722
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable/entities.rb
|
723
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable/entities/event.rb
|
724
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/with.rb
|
725
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares.rb
|
726
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base.rb
|
727
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/commands.rb
|
728
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/commands/create_observable_middleware.rb
|
729
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern.rb
|
730
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern/class_methods.rb
|
731
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern/instance_methods.rb
|
732
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/constants.rb
|
733
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/structs.rb
|
734
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/structs/intended_method.rb
|
735
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain.rb
|
736
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/commands.rb
|
737
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/commands/create_observable_middleware.rb
|
738
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern.rb
|
739
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern/class_methods.rb
|
740
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern/instance_methods.rb
|
741
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/entities.rb
|
742
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/entities/method_chain.rb
|
743
|
+
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/classic.rb
|
479
744
|
- lib/convenient_service/core/entities/config/entities/method_middlewares/entities/stack.rb
|
480
|
-
- lib/convenient_service/core/entities/config/
|
481
|
-
- lib/convenient_service/core/instance_methods.rb
|
745
|
+
- lib/convenient_service/core/entities/config/exceptions.rb
|
482
746
|
- lib/convenient_service/dependencies.rb
|
483
747
|
- lib/convenient_service/dependencies/built_in.rb
|
484
748
|
- lib/convenient_service/dependencies/extractions.rb
|
749
|
+
- lib/convenient_service/dependencies/extractions/active_support_backtrace_cleaner.rb
|
750
|
+
- lib/convenient_service/dependencies/extractions/active_support_backtrace_cleaner/backtrace_cleaner.rb
|
485
751
|
- lib/convenient_service/dependencies/extractions/active_support_concern.rb
|
486
752
|
- lib/convenient_service/dependencies/extractions/active_support_concern/concern.rb
|
487
753
|
- lib/convenient_service/dependencies/extractions/b.rb
|
@@ -491,7 +757,6 @@ files:
|
|
491
757
|
- lib/convenient_service/dependencies/extractions/ruby_middleware/middleware/builder.rb
|
492
758
|
- lib/convenient_service/dependencies/extractions/ruby_middleware/middleware/logger.rb
|
493
759
|
- lib/convenient_service/dependencies/extractions/ruby_middleware/middleware/runner.rb
|
494
|
-
- lib/convenient_service/error.rb
|
495
760
|
- lib/convenient_service/examples/dry/gemfile.rb
|
496
761
|
- lib/convenient_service/examples/dry/gemfile/dry_service.rb
|
497
762
|
- lib/convenient_service/examples/dry/gemfile/dry_service/config.rb
|
@@ -509,7 +774,7 @@ files:
|
|
509
774
|
- lib/convenient_service/examples/dry/gemfile/services/parse_content.rb
|
510
775
|
- lib/convenient_service/examples/dry/gemfile/services/print_shell_command.rb
|
511
776
|
- lib/convenient_service/examples/dry/gemfile/services/read_file_content.rb
|
512
|
-
- lib/convenient_service/examples/dry/gemfile/services/
|
777
|
+
- lib/convenient_service/examples/dry/gemfile/services/run_shell_command.rb
|
513
778
|
- lib/convenient_service/examples/dry/gemfile/services/strip_comments.rb
|
514
779
|
- lib/convenient_service/examples/rails/gemfile.rb
|
515
780
|
- lib/convenient_service/examples/rails/gemfile/rails_service.rb
|
@@ -530,13 +795,22 @@ files:
|
|
530
795
|
- lib/convenient_service/examples/rails/gemfile/services/print_shell_command.rb
|
531
796
|
- lib/convenient_service/examples/rails/gemfile/services/read_file_content.rb
|
532
797
|
- lib/convenient_service/examples/rails/gemfile/services/replace_file_content.rb
|
533
|
-
- lib/convenient_service/examples/rails/gemfile/services/
|
798
|
+
- lib/convenient_service/examples/rails/gemfile/services/run_shell_command.rb
|
534
799
|
- lib/convenient_service/examples/rails/gemfile/services/strip_comments.rb
|
535
800
|
- lib/convenient_service/examples/standard/cowsay.rb
|
536
801
|
- lib/convenient_service/examples/standard/cowsay/services.rb
|
537
802
|
- lib/convenient_service/examples/standard/cowsay/services/build_cloud.rb
|
538
803
|
- lib/convenient_service/examples/standard/cowsay/services/build_cow.rb
|
539
804
|
- lib/convenient_service/examples/standard/cowsay/services/print.rb
|
805
|
+
- lib/convenient_service/examples/standard/date_time.rb
|
806
|
+
- lib/convenient_service/examples/standard/date_time/services.rb
|
807
|
+
- lib/convenient_service/examples/standard/date_time/services/safe_parse.rb
|
808
|
+
- lib/convenient_service/examples/standard/factorial.rb
|
809
|
+
- lib/convenient_service/examples/standard/factorial/services.rb
|
810
|
+
- lib/convenient_service/examples/standard/factorial/services/calculate.rb
|
811
|
+
- lib/convenient_service/examples/standard/factorial/utils.rb
|
812
|
+
- lib/convenient_service/examples/standard/factorial/utils/timeout.rb
|
813
|
+
- lib/convenient_service/examples/standard/factorial/utils/timeout/with_timeout.rb
|
540
814
|
- lib/convenient_service/examples/standard/gemfile.rb
|
541
815
|
- lib/convenient_service/examples/standard/gemfile/services.rb
|
542
816
|
- lib/convenient_service/examples/standard/gemfile/services/assert_file_exists.rb
|
@@ -554,7 +828,7 @@ files:
|
|
554
828
|
- lib/convenient_service/examples/standard/gemfile/services/print_shell_command.rb
|
555
829
|
- lib/convenient_service/examples/standard/gemfile/services/read_file_content.rb
|
556
830
|
- lib/convenient_service/examples/standard/gemfile/services/replace_file_content.rb
|
557
|
-
- lib/convenient_service/examples/standard/gemfile/services/
|
831
|
+
- lib/convenient_service/examples/standard/gemfile/services/run_shell_command.rb
|
558
832
|
- lib/convenient_service/examples/standard/gemfile/services/strip_comments.rb
|
559
833
|
- lib/convenient_service/examples/standard/request_params.rb
|
560
834
|
- lib/convenient_service/examples/standard/request_params/constants.rb
|
@@ -592,12 +866,16 @@ files:
|
|
592
866
|
- lib/convenient_service/examples/standard/request_params/utils/object.rb
|
593
867
|
- lib/convenient_service/examples/standard/request_params/utils/object/blank.rb
|
594
868
|
- lib/convenient_service/examples/standard/request_params/utils/object/present.rb
|
869
|
+
- lib/convenient_service/examples/standard/request_params/utils/url.rb
|
870
|
+
- lib/convenient_service/examples/standard/request_params/utils/url/valid.rb
|
871
|
+
- lib/convenient_service/exception.rb
|
595
872
|
- lib/convenient_service/feature.rb
|
596
873
|
- lib/convenient_service/logger.rb
|
597
874
|
- lib/convenient_service/rspec.rb
|
598
875
|
- lib/convenient_service/rspec/helpers.rb
|
599
876
|
- lib/convenient_service/rspec/helpers/custom.rb
|
600
|
-
- lib/convenient_service/rspec/helpers/custom/
|
877
|
+
- lib/convenient_service/rspec/helpers/custom/ignoring_exception.rb
|
878
|
+
- lib/convenient_service/rspec/helpers/custom/ignoring_exception/exceptions.rb
|
601
879
|
- lib/convenient_service/rspec/helpers/custom/in_threads.rb
|
602
880
|
- lib/convenient_service/rspec/helpers/custom/stub_service.rb
|
603
881
|
- lib/convenient_service/rspec/helpers/custom/stub_service/constants.rb
|
@@ -607,8 +885,8 @@ files:
|
|
607
885
|
- lib/convenient_service/rspec/helpers/custom/wrap_method.rb
|
608
886
|
- lib/convenient_service/rspec/helpers/custom/wrap_method/entities.rb
|
609
887
|
- lib/convenient_service/rspec/helpers/custom/wrap_method/entities/wrapped_method.rb
|
610
|
-
- lib/convenient_service/rspec/helpers/custom/wrap_method/
|
611
|
-
- lib/convenient_service/rspec/helpers/
|
888
|
+
- lib/convenient_service/rspec/helpers/custom/wrap_method/exceptions.rb
|
889
|
+
- lib/convenient_service/rspec/helpers/ignoring_exception.rb
|
612
890
|
- lib/convenient_service/rspec/helpers/in_threads.rb
|
613
891
|
- lib/convenient_service/rspec/helpers/stub_service.rb
|
614
892
|
- lib/convenient_service/rspec/helpers/wrap_method.rb
|
@@ -642,7 +920,7 @@ files:
|
|
642
920
|
- lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings/values/with_calling_original.rb
|
643
921
|
- lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings/values/without_calling_original.rb
|
644
922
|
- lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings_collection.rb
|
645
|
-
- lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings_collection/
|
923
|
+
- lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings_collection/exceptions.rb
|
646
924
|
- lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/delegation.rb
|
647
925
|
- lib/convenient_service/rspec/matchers/custom/export.rb
|
648
926
|
- lib/convenient_service/rspec/matchers/custom/extend_module.rb
|
@@ -655,15 +933,43 @@ files:
|
|
655
933
|
- lib/convenient_service/rspec/matchers/custom/prepend_module.rb
|
656
934
|
- lib/convenient_service/rspec/matchers/custom/results.rb
|
657
935
|
- lib/convenient_service/rspec/matchers/custom/results/base.rb
|
658
|
-
- lib/convenient_service/rspec/matchers/custom/results/base/commands.rb
|
659
|
-
- lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_method_step.rb
|
660
|
-
- lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_result_method_step.rb
|
661
|
-
- lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_service_step.rb
|
662
|
-
- lib/convenient_service/rspec/matchers/custom/results/base/commands/generate_expected_step_part.rb
|
663
|
-
- lib/convenient_service/rspec/matchers/custom/results/base/commands/generate_got_step_part.rb
|
664
|
-
- lib/convenient_service/rspec/matchers/custom/results/base/commands/match_result_step.rb
|
665
936
|
- lib/convenient_service/rspec/matchers/custom/results/base/constants.rb
|
666
|
-
- lib/convenient_service/rspec/matchers/custom/results/base/
|
937
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities.rb
|
938
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/chain.rb
|
939
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers.rb
|
940
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base.rb
|
941
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands.rb
|
942
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_code_part.rb
|
943
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_data_part.rb
|
944
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_message_part.rb
|
945
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_parts.rb
|
946
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_service_part.rb
|
947
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_status_part.rb
|
948
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_step_part.rb
|
949
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_parts.rb
|
950
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_service_part.rb
|
951
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_step_part.rb
|
952
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error.rb
|
953
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error/commands.rb
|
954
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error/commands/generate_got_jsend_attributes_part.rb
|
955
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure.rb
|
956
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure/commands.rb
|
957
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure/commands/generate_got_jsend_attributes_part.rb
|
958
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/null.rb
|
959
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success.rb
|
960
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success/commands.rb
|
961
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success/commands/generate_got_jsend_attributes_part.rb
|
962
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator.rb
|
963
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands.rb
|
964
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result.rb
|
965
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_code.rb
|
966
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_data.rb
|
967
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_message.rb
|
968
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_service.rb
|
969
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_status.rb
|
970
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_step.rb
|
971
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_type.rb
|
972
|
+
- lib/convenient_service/rspec/matchers/custom/results/base/exceptions.rb
|
667
973
|
- lib/convenient_service/rspec/matchers/custom/results/be_error.rb
|
668
974
|
- lib/convenient_service/rspec/matchers/custom/results/be_failure.rb
|
669
975
|
- lib/convenient_service/rspec/matchers/custom/results/be_not_error.rb
|
@@ -692,10 +998,12 @@ files:
|
|
692
998
|
- lib/convenient_service/service.rb
|
693
999
|
- lib/convenient_service/service/plugins.rb
|
694
1000
|
- lib/convenient_service/service/plugins/aliases.rb
|
1001
|
+
- lib/convenient_service/service/plugins/can_have_fallback.rb
|
1002
|
+
- lib/convenient_service/service/plugins/can_have_fallback/concern.rb
|
1003
|
+
- lib/convenient_service/service/plugins/can_have_fallback/exceptions.rb
|
1004
|
+
- lib/convenient_service/service/plugins/can_have_fallback/middleware.rb
|
695
1005
|
- lib/convenient_service/service/plugins/can_have_method_steps.rb
|
696
1006
|
- lib/convenient_service/service/plugins/can_have_method_steps/middleware.rb
|
697
|
-
- lib/convenient_service/service/plugins/can_have_result_step.rb
|
698
|
-
- lib/convenient_service/service/plugins/can_have_result_step/middleware.rb
|
699
1007
|
- lib/convenient_service/service/plugins/can_have_steps.rb
|
700
1008
|
- lib/convenient_service/service/plugins/can_have_steps/commands.rb
|
701
1009
|
- lib/convenient_service/service/plugins/can_have_steps/commands/create_step_class.rb
|
@@ -741,131 +1049,225 @@ files:
|
|
741
1049
|
- lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/name.rb
|
742
1050
|
- lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/values.rb
|
743
1051
|
- lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/values/reassignment.rb
|
744
|
-
- lib/convenient_service/service/plugins/can_have_steps/entities/method/
|
1052
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/method/exceptions.rb
|
745
1053
|
- lib/convenient_service/service/plugins/can_have_steps/entities/service.rb
|
746
|
-
- lib/convenient_service/service/plugins/can_have_steps/entities/service/
|
1054
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/service/concern.rb
|
1055
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/service/concern/class_methods.rb
|
1056
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/service/concern/instance_methods.rb
|
747
1057
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step.rb
|
748
1058
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/commands.rb
|
749
1059
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/commands/cast_params.rb
|
750
1060
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/commands/extract_params.rb
|
751
1061
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/concern.rb
|
752
1062
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/concern/instance_methods.rb
|
753
|
-
- lib/convenient_service/service/plugins/can_have_steps/entities/step/
|
1063
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/exceptions.rb
|
754
1064
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins.rb
|
755
1065
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/aliases.rb
|
1066
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_completed.rb
|
1067
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_completed/concern.rb
|
1068
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step.rb
|
1069
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_executed.rb
|
1070
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_executed/middleware.rb
|
1071
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_printed.rb
|
1072
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_printed/middleware.rb
|
1073
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/concern.rb
|
1074
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step.rb
|
1075
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed.rb
|
1076
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed/exceptions.rb
|
1077
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed/middleware.rb
|
1078
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/concern.rb
|
1079
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback.rb
|
1080
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/concern.rb
|
1081
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/middleware.rb
|
1082
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/result.rb
|
756
1083
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_parent_result.rb
|
757
1084
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_parent_result/middleware.rb
|
1085
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect.rb
|
1086
|
+
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect/concern.rb
|
758
1087
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_inspect.rb
|
759
1088
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_inspect/concern.rb
|
760
1089
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/structs.rb
|
761
1090
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step/structs/params.rb
|
762
1091
|
- lib/convenient_service/service/plugins/can_have_steps/entities/step_collection.rb
|
763
1092
|
- lib/convenient_service/service/plugins/can_have_steps/middleware.rb
|
764
|
-
- lib/convenient_service/service/plugins/
|
765
|
-
- lib/convenient_service/service/plugins/
|
766
|
-
- lib/convenient_service/service/plugins/
|
1093
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results.rb
|
1094
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results/commands.rb
|
1095
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results/commands/fetch_all_services_stubbed_results_cache.rb
|
1096
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results/commands/fetch_service_stubbed_results_cache.rb
|
1097
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results/commands/get_service_stubbed_result.rb
|
1098
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results/commands/set_service_stubbed_result.rb
|
1099
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results/concern.rb
|
1100
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results/container.rb
|
1101
|
+
- lib/convenient_service/service/plugins/can_have_stubbed_results/middleware.rb
|
767
1102
|
- lib/convenient_service/service/plugins/can_recalculate_result.rb
|
768
1103
|
- lib/convenient_service/service/plugins/can_recalculate_result/concern.rb
|
1104
|
+
- lib/convenient_service/service/plugins/collects_services_in_exception.rb
|
1105
|
+
- lib/convenient_service/service/plugins/collects_services_in_exception/commands.rb
|
1106
|
+
- lib/convenient_service/service/plugins/collects_services_in_exception/commands/extract_service_details.rb
|
1107
|
+
- lib/convenient_service/service/plugins/collects_services_in_exception/constants.rb
|
1108
|
+
- lib/convenient_service/service/plugins/collects_services_in_exception/middleware.rb
|
1109
|
+
- lib/convenient_service/service/plugins/counts_stubbed_results_invocations.rb
|
1110
|
+
- lib/convenient_service/service/plugins/counts_stubbed_results_invocations/middleware.rb
|
1111
|
+
- lib/convenient_service/service/plugins/has_awesome_print_inspect.rb
|
1112
|
+
- lib/convenient_service/service/plugins/has_awesome_print_inspect/concern.rb
|
769
1113
|
- lib/convenient_service/service/plugins/has_inspect.rb
|
770
1114
|
- lib/convenient_service/service/plugins/has_inspect/concern.rb
|
1115
|
+
- lib/convenient_service/service/plugins/has_j_send_result.rb
|
1116
|
+
- lib/convenient_service/service/plugins/has_j_send_result/commands.rb
|
1117
|
+
- lib/convenient_service/service/plugins/has_j_send_result/commands/create_result_class.rb
|
1118
|
+
- lib/convenient_service/service/plugins/has_j_send_result/commands/is_result.rb
|
1119
|
+
- lib/convenient_service/service/plugins/has_j_send_result/concern.rb
|
1120
|
+
- lib/convenient_service/service/plugins/has_j_send_result/concern/class_methods.rb
|
1121
|
+
- lib/convenient_service/service/plugins/has_j_send_result/concern/instance_methods.rb
|
1122
|
+
- lib/convenient_service/service/plugins/has_j_send_result/constants.rb
|
1123
|
+
- lib/convenient_service/service/plugins/has_j_send_result/container.rb
|
1124
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities.rb
|
1125
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result.rb
|
1126
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/concern.rb
|
1127
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins.rb
|
1128
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/aliases.rb
|
1129
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_own_result.rb
|
1130
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_own_result/concern.rb
|
1131
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_stubbed_result.rb
|
1132
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_stubbed_result/concern.rb
|
1133
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status.rb
|
1134
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status/concern.rb
|
1135
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status/middleware.rb
|
1136
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_fallback.rb
|
1137
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_fallback/concern.rb
|
1138
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_parent_result.rb
|
1139
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_parent_result/concern.rb
|
1140
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_parent_result/constants.rb
|
1141
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_step.rb
|
1142
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_step/concern.rb
|
1143
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_recalculate_result.rb
|
1144
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_recalculate_result/concern.rb
|
1145
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect.rb
|
1146
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect/concern.rb
|
1147
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_inspect.rb
|
1148
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_inspect/concern.rb
|
1149
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes.rb
|
1150
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands.rb
|
1151
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/cast_j_send_attributes.rb
|
1152
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_code_class.rb
|
1153
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_data_class.rb
|
1154
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_message_class.rb
|
1155
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_status_class.rb
|
1156
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/concern.rb
|
1157
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/concern/class_methods.rb
|
1158
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/concern/instance_methods.rb
|
1159
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities.rb
|
1160
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code.rb
|
1161
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/commands.rb
|
1162
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/commands/is_code.rb
|
1163
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern.rb
|
1164
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern/class_methods.rb
|
1165
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern/instance_methods.rb
|
1166
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins.rb
|
1167
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/aliases.rb
|
1168
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_awesome_print_inspect.rb
|
1169
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_awesome_print_inspect/concern.rb
|
1170
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_inspect.rb
|
1171
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_inspect/concern.rb
|
1172
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data.rb
|
1173
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/commands.rb
|
1174
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/commands/is_data.rb
|
1175
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern.rb
|
1176
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern/class_methods.rb
|
1177
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern/instance_methods.rb
|
1178
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins.rb
|
1179
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/aliases.rb
|
1180
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_awesome_print_inspect.rb
|
1181
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_awesome_print_inspect/concern.rb
|
1182
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_inspect.rb
|
1183
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_inspect/commands.rb
|
1184
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_inspect/commands/generate_inspect_output.rb
|
1185
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_inspect/concern.rb
|
1186
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message.rb
|
1187
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/commands.rb
|
1188
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/commands/is_message.rb
|
1189
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern.rb
|
1190
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern/class_methods.rb
|
1191
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern/instance_methods.rb
|
1192
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins.rb
|
1193
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/aliases.rb
|
1194
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_awesome_print_inspect.rb
|
1195
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_awesome_print_inspect/concern.rb
|
1196
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_inspect.rb
|
1197
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_inspect/concern.rb
|
1198
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status.rb
|
1199
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/commands.rb
|
1200
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/commands/is_status.rb
|
1201
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern.rb
|
1202
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern/class_methods.rb
|
1203
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern/instance_methods.rb
|
1204
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins.rb
|
1205
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/aliases.rb
|
1206
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_awesome_print_inspect.rb
|
1207
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_awesome_print_inspect/concern.rb
|
1208
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_inspect.rb
|
1209
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_inspect/concern.rb
|
1210
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/exceptions.rb
|
1211
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/middleware.rb
|
1212
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/structs.rb
|
1213
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/structs/j_send_attributes.rb
|
1214
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter.rb
|
1215
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter/concern.rb
|
1216
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter/middleware.rb
|
1217
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/raises_on_not_checked_result_status.rb
|
1218
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/raises_on_not_checked_result_status/exceptions.rb
|
1219
|
+
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/raises_on_not_checked_result_status/middleware.rb
|
1220
|
+
- lib/convenient_service/service/plugins/has_j_send_result/exceptions.rb
|
1221
|
+
- lib/convenient_service/service/plugins/has_j_send_result_params_validations/using_active_model_validations.rb
|
1222
|
+
- lib/convenient_service/service/plugins/has_j_send_result_params_validations/using_active_model_validations/concern.rb
|
1223
|
+
- lib/convenient_service/service/plugins/has_j_send_result_params_validations/using_active_model_validations/middleware.rb
|
1224
|
+
- lib/convenient_service/service/plugins/has_j_send_result_params_validations/using_dry_validation.rb
|
1225
|
+
- lib/convenient_service/service/plugins/has_j_send_result_params_validations/using_dry_validation/concern.rb
|
1226
|
+
- lib/convenient_service/service/plugins/has_j_send_result_params_validations/using_dry_validation/middleware.rb
|
1227
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax.rb
|
1228
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/concern.rb
|
1229
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/error.rb
|
1230
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/error/commands.rb
|
1231
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/error/commands/assert_args_count_lower_than_three.rb
|
1232
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/error/commands/assert_either_args_or_kwargs_are_passed.rb
|
1233
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/error/exceptions.rb
|
1234
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/error/middleware.rb
|
1235
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure.rb
|
1236
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/commands.rb
|
1237
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/commands/assert_kwargs_contain_only_j_send_keys.rb
|
1238
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/exceptions.rb
|
1239
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/middleware.rb
|
1240
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/success.rb
|
1241
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/success/commands.rb
|
1242
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/success/commands/refute_kwargs_contain_data_and_extra_keys.rb
|
1243
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/success/exceptions.rb
|
1244
|
+
- lib/convenient_service/service/plugins/has_j_send_result_short_syntax/success/middleware.rb
|
1245
|
+
- lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax.rb
|
1246
|
+
- lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb
|
1247
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart.rb
|
1248
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/concern.rb
|
1249
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities.rb
|
1250
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart.rb
|
1251
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities.rb
|
1252
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code.rb
|
1253
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands.rb
|
1254
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_lines.rb
|
1255
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_method_step_lines.rb
|
1256
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_result_lines.rb
|
1257
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_service_lines.rb
|
1258
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_service_step_lines.rb
|
1259
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/settings.rb
|
1260
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/template.rb
|
1261
|
+
- lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/templates/flowchart.html.erb
|
771
1262
|
- lib/convenient_service/service/plugins/has_result.rb
|
772
|
-
- lib/convenient_service/service/plugins/has_result/commands.rb
|
773
|
-
- lib/convenient_service/service/plugins/has_result/commands/create_result_class.rb
|
774
1263
|
- lib/convenient_service/service/plugins/has_result/concern.rb
|
775
|
-
- lib/convenient_service/service/plugins/has_result/
|
776
|
-
- lib/convenient_service/service/plugins/has_result/concern/instance_methods.rb
|
777
|
-
- lib/convenient_service/service/plugins/has_result/constants.rb
|
778
|
-
- lib/convenient_service/service/plugins/has_result/entities.rb
|
779
|
-
- lib/convenient_service/service/plugins/has_result/entities/result.rb
|
780
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/concern.rb
|
781
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins.rb
|
782
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/aliases.rb
|
783
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result.rb
|
784
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/concern.rb
|
785
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/constants.rb
|
786
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/initialize.rb
|
787
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/initialize/middleware.rb
|
788
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/to_kwargs.rb
|
789
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/to_kwargs/middleware.rb
|
790
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_recalculate_result.rb
|
791
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_recalculate_result/concern.rb
|
792
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_inspect.rb
|
793
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_inspect/concern.rb
|
794
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes.rb
|
795
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/commands.rb
|
796
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/commands/cast_j_send_attributes.rb
|
797
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_code_class.rb
|
798
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_data_class.rb
|
799
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_message_class.rb
|
800
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_status_class.rb
|
801
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/concern.rb
|
802
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/concern/class_methods.rb
|
803
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/concern/instance_methods.rb
|
804
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities.rb
|
805
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code.rb
|
806
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern.rb
|
807
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern/class_methods.rb
|
808
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/concern/instance_methods.rb
|
809
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data.rb
|
810
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern.rb
|
811
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern/class_methods.rb
|
812
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern/instance_methods.rb
|
813
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message.rb
|
814
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern.rb
|
815
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern/class_methods.rb
|
816
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern/instance_methods.rb
|
817
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status.rb
|
818
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern.rb
|
819
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern/class_methods.rb
|
820
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern/instance_methods.rb
|
821
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/errors.rb
|
822
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/middleware.rb
|
823
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/structs.rb
|
824
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_j_send_status_and_attributes/structs/j_send_attributes.rb
|
825
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax.rb
|
826
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb
|
827
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step.rb
|
828
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/concern.rb
|
829
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/initialize.rb
|
830
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/initialize/middleware.rb
|
831
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/to_kwargs.rb
|
832
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/to_kwargs/middleware.rb
|
833
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/marks_result_status_as_checked.rb
|
834
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/marks_result_status_as_checked/middleware.rb
|
835
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/raises_on_not_checked_result_status.rb
|
836
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/raises_on_not_checked_result_status/errors.rb
|
837
|
-
- lib/convenient_service/service/plugins/has_result/entities/result/plugins/raises_on_not_checked_result_status/middleware.rb
|
838
|
-
- lib/convenient_service/service/plugins/has_result/errors.rb
|
839
|
-
- lib/convenient_service/service/plugins/has_result/middleware.rb
|
840
|
-
- lib/convenient_service/service/plugins/has_result_params_validations/using_active_model_validations.rb
|
841
|
-
- lib/convenient_service/service/plugins/has_result_params_validations/using_active_model_validations/concern.rb
|
842
|
-
- lib/convenient_service/service/plugins/has_result_params_validations/using_active_model_validations/middleware.rb
|
843
|
-
- lib/convenient_service/service/plugins/has_result_params_validations/using_dry_validation.rb
|
844
|
-
- lib/convenient_service/service/plugins/has_result_params_validations/using_dry_validation/concern.rb
|
845
|
-
- lib/convenient_service/service/plugins/has_result_params_validations/using_dry_validation/middleware.rb
|
846
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax.rb
|
847
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/concern.rb
|
848
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/error.rb
|
849
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/error/commands.rb
|
850
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/error/commands/assert_args_count_lower_than_three.rb
|
851
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/error/commands/assert_either_args_or_kwargs_are_passed.rb
|
852
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/error/errors.rb
|
853
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/error/middleware.rb
|
854
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/failure.rb
|
855
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/failure/commands.rb
|
856
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/failure/commands/refute_kwargs_contain_data_and_extra_keys.rb
|
857
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/failure/errors.rb
|
858
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/failure/middleware.rb
|
859
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/success.rb
|
860
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/success/commands.rb
|
861
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/success/commands/refute_kwargs_contain_data_and_extra_keys.rb
|
862
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/success/errors.rb
|
863
|
-
- lib/convenient_service/service/plugins/has_result_short_syntax/success/middleware.rb
|
864
|
-
- lib/convenient_service/service/plugins/has_result_status_check_short_syntax.rb
|
865
|
-
- lib/convenient_service/service/plugins/has_result_status_check_short_syntax/concern.rb
|
1264
|
+
- lib/convenient_service/service/plugins/has_result/exceptions.rb
|
866
1265
|
- lib/convenient_service/service/plugins/raises_on_double_result.rb
|
867
|
-
- lib/convenient_service/service/plugins/raises_on_double_result/
|
1266
|
+
- lib/convenient_service/service/plugins/raises_on_double_result/exceptions.rb
|
868
1267
|
- lib/convenient_service/service/plugins/raises_on_double_result/middleware.rb
|
1268
|
+
- lib/convenient_service/service/plugins/raises_on_not_result_return_value.rb
|
1269
|
+
- lib/convenient_service/service/plugins/raises_on_not_result_return_value/exceptions.rb
|
1270
|
+
- lib/convenient_service/service/plugins/raises_on_not_result_return_value/middleware.rb
|
869
1271
|
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions.rb
|
870
1272
|
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands.rb
|
871
1273
|
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_backtrace.rb
|
@@ -876,21 +1278,31 @@ files:
|
|
876
1278
|
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_message.rb
|
877
1279
|
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/constants.rb
|
878
1280
|
- lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/middleware.rb
|
1281
|
+
- lib/convenient_service/service/plugins/sets_parent_to_foreign_result.rb
|
1282
|
+
- lib/convenient_service/service/plugins/sets_parent_to_foreign_result/middleware.rb
|
879
1283
|
- lib/convenient_service/service/plugins/wraps_result_in_db_transaction.rb
|
880
1284
|
- lib/convenient_service/service/plugins/wraps_result_in_db_transaction/middleware.rb
|
881
1285
|
- lib/convenient_service/services.rb
|
882
|
-
- lib/convenient_service/services/run_method_in_organizer.rb
|
883
|
-
- lib/convenient_service/services/run_own_method_in_organizer.rb
|
884
1286
|
- lib/convenient_service/specification.rb
|
885
1287
|
- lib/convenient_service/support.rb
|
886
1288
|
- lib/convenient_service/support/abstract_method.rb
|
887
|
-
- lib/convenient_service/support/abstract_method/
|
1289
|
+
- lib/convenient_service/support/abstract_method/exceptions.rb
|
888
1290
|
- lib/convenient_service/support/arguments.rb
|
889
1291
|
- lib/convenient_service/support/arguments/null_arguments.rb
|
890
1292
|
- lib/convenient_service/support/cache.rb
|
891
|
-
- lib/convenient_service/support/cache/
|
1293
|
+
- lib/convenient_service/support/cache/constants.rb
|
1294
|
+
- lib/convenient_service/support/cache/entities.rb
|
1295
|
+
- lib/convenient_service/support/cache/entities/caches.rb
|
1296
|
+
- lib/convenient_service/support/cache/entities/caches/array.rb
|
1297
|
+
- lib/convenient_service/support/cache/entities/caches/array/entities.rb
|
1298
|
+
- lib/convenient_service/support/cache/entities/caches/array/entities/pair.rb
|
1299
|
+
- lib/convenient_service/support/cache/entities/caches/base.rb
|
1300
|
+
- lib/convenient_service/support/cache/entities/caches/hash.rb
|
1301
|
+
- lib/convenient_service/support/cache/entities/caches/thread_safe_array.rb
|
1302
|
+
- lib/convenient_service/support/cache/entities/key.rb
|
1303
|
+
- lib/convenient_service/support/cache/exceptions.rb
|
892
1304
|
- lib/convenient_service/support/castable.rb
|
893
|
-
- lib/convenient_service/support/castable/
|
1305
|
+
- lib/convenient_service/support/castable/exceptions.rb
|
894
1306
|
- lib/convenient_service/support/command.rb
|
895
1307
|
- lib/convenient_service/support/concern.rb
|
896
1308
|
- lib/convenient_service/support/copyable.rb
|
@@ -912,12 +1324,14 @@ files:
|
|
912
1324
|
- lib/convenient_service/support/dependency_container/entities/namespace.rb
|
913
1325
|
- lib/convenient_service/support/dependency_container/entities/namespace_collection.rb
|
914
1326
|
- lib/convenient_service/support/dependency_container/entry.rb
|
915
|
-
- lib/convenient_service/support/dependency_container/
|
1327
|
+
- lib/convenient_service/support/dependency_container/exceptions.rb
|
916
1328
|
- lib/convenient_service/support/dependency_container/export.rb
|
917
1329
|
- lib/convenient_service/support/dependency_container/import.rb
|
918
1330
|
- lib/convenient_service/support/finite_loop.rb
|
919
1331
|
- lib/convenient_service/support/gems.rb
|
920
1332
|
- lib/convenient_service/support/gems/active_model.rb
|
1333
|
+
- lib/convenient_service/support/gems/logger.rb
|
1334
|
+
- lib/convenient_service/support/gems/paint.rb
|
921
1335
|
- lib/convenient_service/support/gems/rspec.rb
|
922
1336
|
- lib/convenient_service/support/middleware.rb
|
923
1337
|
- lib/convenient_service/support/middleware/stack_builder.rb
|
@@ -934,17 +1348,22 @@ files:
|
|
934
1348
|
- lib/convenient_service/utils/array.rb
|
935
1349
|
- lib/convenient_service/utils/array/contain_exactly.rb
|
936
1350
|
- lib/convenient_service/utils/array/drop_while.rb
|
937
|
-
- lib/convenient_service/utils/array/
|
1351
|
+
- lib/convenient_service/utils/array/exceptions.rb
|
938
1352
|
- lib/convenient_service/utils/array/find_last.rb
|
939
1353
|
- lib/convenient_service/utils/array/find_yield.rb
|
940
1354
|
- lib/convenient_service/utils/array/keep_after.rb
|
1355
|
+
- lib/convenient_service/utils/array/limited_push.rb
|
941
1356
|
- lib/convenient_service/utils/array/merge.rb
|
942
1357
|
- lib/convenient_service/utils/array/rjust.rb
|
943
1358
|
- lib/convenient_service/utils/array/wrap.rb
|
944
1359
|
- lib/convenient_service/utils/bool.rb
|
945
1360
|
- lib/convenient_service/utils/bool/to_bool.rb
|
1361
|
+
- lib/convenient_service/utils/class.rb
|
1362
|
+
- lib/convenient_service/utils/class/display_name.rb
|
946
1363
|
- lib/convenient_service/utils/hash.rb
|
1364
|
+
- lib/convenient_service/utils/hash/assert_valid_keys.rb
|
947
1365
|
- lib/convenient_service/utils/hash/except.rb
|
1366
|
+
- lib/convenient_service/utils/hash/triple_equality_compare.rb
|
948
1367
|
- lib/convenient_service/utils/method.rb
|
949
1368
|
- lib/convenient_service/utils/method/defined.rb
|
950
1369
|
- lib/convenient_service/utils/module.rb
|
@@ -956,10 +1375,11 @@ files:
|
|
956
1375
|
- lib/convenient_service/utils/module/include_module.rb
|
957
1376
|
- lib/convenient_service/utils/module/instance_method_defined.rb
|
958
1377
|
- lib/convenient_service/utils/object.rb
|
1378
|
+
- lib/convenient_service/utils/object/clamp_class.rb
|
1379
|
+
- lib/convenient_service/utils/object/duck_class.rb
|
959
1380
|
- lib/convenient_service/utils/object/instance_variable_delete.rb
|
960
1381
|
- lib/convenient_service/utils/object/instance_variable_fetch.rb
|
961
1382
|
- lib/convenient_service/utils/object/memoize_including_falsy_values.rb
|
962
|
-
- lib/convenient_service/utils/object/resolve_class.rb
|
963
1383
|
- lib/convenient_service/utils/object/resolve_type.rb
|
964
1384
|
- lib/convenient_service/utils/proc.rb
|
965
1385
|
- lib/convenient_service/utils/proc/conjunct.rb
|
@@ -969,8 +1389,10 @@ files:
|
|
969
1389
|
- lib/convenient_service/utils/string/camelize.rb
|
970
1390
|
- lib/convenient_service/utils/string/demodulize.rb
|
971
1391
|
- lib/convenient_service/utils/string/split.rb
|
1392
|
+
- lib/convenient_service/utils/string/truncate.rb
|
972
1393
|
- lib/convenient_service/version.rb
|
973
1394
|
- logo.png
|
1395
|
+
- minitest.rb
|
974
1396
|
homepage: https://github.com/marian13/convenient_service
|
975
1397
|
licenses:
|
976
1398
|
- MIT
|