convenient_service 0.11.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (713) hide show
  1. checksums.yaml +4 -4
  2. data/.dev/.tmuxinator.yml +6 -1
  3. data/.github/workflows/ci.yml +23 -1
  4. data/.gitignore +18 -0
  5. data/.vscode/CacheItsValue.code-snippets +15 -0
  6. data/.vscode/DelegateTo.code-snippets +15 -0
  7. data/.vscode/cache_its_value.code-snippets +17 -0
  8. data/.vscode/comparison.code-snippets +41 -0
  9. data/.vscode/delegate_to.code-snippets +20 -0
  10. data/Appraisals +24 -2
  11. data/CHANGELOG.md +205 -0
  12. data/Gemfile +12 -1
  13. data/README.md +14 -4
  14. data/ROADMAP.md +5 -1
  15. data/Taskfile.yml +320 -21
  16. data/benchmark/commit_config/ips.rb +18 -0
  17. data/benchmark/commit_config/profile.rb +30 -0
  18. data/benchmark/empty_service/ips.rb +123 -0
  19. data/benchmark/has_committed_config/ips.rb +78 -0
  20. data/benchmark/has_committed_config/profile.rb +30 -0
  21. data/convenient_service.gemspec +165 -6
  22. data/docker/2.7/Dockerfile +3 -3
  23. data/docker/3.0/Dockerfile +2 -2
  24. data/docker/3.1/Dockerfile +2 -2
  25. data/docker/3.2/Dockerfile +73 -0
  26. data/docker/jruby-9.4/Dockerfile +88 -0
  27. data/docker/truffleruby-22.3/Dockerfile +91 -0
  28. data/gemfiles/.gitkeep +0 -0
  29. data/lib/convenient_service/alias.rb +3 -0
  30. data/lib/convenient_service/aliases.rb +0 -4
  31. data/lib/convenient_service/common/plugins/aliases.rb +0 -1
  32. data/lib/convenient_service/common/plugins/assigns_attributes_in_constructor/using_active_model_attribute_assignment/middleware.rb +15 -9
  33. data/lib/convenient_service/common/plugins/caches_constructor_arguments/concern.rb +22 -0
  34. data/lib/convenient_service/common/plugins/caches_constructor_arguments/middleware.rb +22 -0
  35. data/lib/convenient_service/common/plugins/caches_constructor_arguments.rb +4 -0
  36. data/lib/convenient_service/common/plugins/caches_return_value/middleware.rb +12 -8
  37. data/lib/convenient_service/common/plugins/can_be_copied/concern.rb +22 -5
  38. data/lib/convenient_service/common/plugins/can_have_user_provided_entity/commands/find_or_create_entity.rb +9 -7
  39. data/lib/convenient_service/common/plugins/can_have_user_provided_entity/{errors.rb → exceptions.rb} +4 -4
  40. data/lib/convenient_service/common/plugins/can_have_user_provided_entity.rb +1 -1
  41. data/lib/convenient_service/common/plugins/can_utilize_finite_loop/concern.rb +40 -0
  42. data/lib/convenient_service/common/plugins/can_utilize_finite_loop/constants.rb +21 -0
  43. data/lib/convenient_service/common/plugins/can_utilize_finite_loop.rb +4 -0
  44. data/lib/convenient_service/common/plugins/has_around_callbacks/{errors.rb → exceptions.rb} +2 -2
  45. data/lib/convenient_service/common/plugins/has_around_callbacks/middleware.rb +9 -3
  46. data/lib/convenient_service/common/plugins/has_around_callbacks.rb +1 -1
  47. data/lib/convenient_service/common/plugins/has_callbacks/entities/callback.rb +8 -8
  48. data/lib/convenient_service/common/plugins/has_callbacks/middleware.rb +7 -1
  49. data/lib/convenient_service/common/plugins/has_constructor/concern.rb +3 -4
  50. data/lib/convenient_service/common/plugins/has_constructor_without_initialize/concern.rb +1 -9
  51. data/lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/aliases.rb +7 -0
  52. data/lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb +1 -1
  53. data/lib/convenient_service/common/plugins/has_internals/entities/internals/plugins.rb +2 -0
  54. data/lib/convenient_service/common/plugins/has_j_send_result_duck_short_syntax/concern.rb +68 -0
  55. data/lib/convenient_service/common/plugins/has_j_send_result_duck_short_syntax.rb +3 -0
  56. data/lib/convenient_service/common/plugins/normalizes_env/middleware.rb +3 -1
  57. data/lib/convenient_service/common/plugins.rb +2 -1
  58. data/lib/convenient_service/configs/awesome_print_inspect/aliases.rb +7 -0
  59. data/lib/convenient_service/configs/awesome_print_inspect.rb +59 -0
  60. data/lib/convenient_service/configs/minimal.rb +86 -15
  61. data/lib/convenient_service/configs/standard.rb +92 -30
  62. data/lib/convenient_service/core/aliases.rb +4 -5
  63. data/lib/convenient_service/core/concern/class_methods.rb +129 -0
  64. data/lib/convenient_service/core/concern/instance_methods.rb +76 -0
  65. data/lib/convenient_service/core/concern.rb +25 -0
  66. data/lib/convenient_service/core/constants.rb +36 -0
  67. data/lib/convenient_service/core/entities/config/commands/track_method_missing_commit_trigger.rb +69 -0
  68. data/lib/convenient_service/core/entities/config/commands.rb +3 -0
  69. data/lib/convenient_service/core/entities/config/entities/concerns/entities/middleware/commands/cast_middleware.rb +2 -2
  70. data/lib/convenient_service/core/entities/config/entities/concerns/entities/middleware.rb +1 -0
  71. data/lib/convenient_service/core/entities/config/entities/concerns/entities/stack.rb +10 -10
  72. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/commands/cast_caller.rb +2 -2
  73. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/concern/instance_methods.rb +9 -2
  74. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller/constants.rb +26 -0
  75. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/caller.rb +1 -3
  76. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container/concern/instance_methods.rb +10 -3
  77. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/base.rb +95 -0
  78. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable/entities/event.rb +95 -0
  79. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable/entities.rb +3 -0
  80. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable.rb +42 -0
  81. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/with.rb +50 -0
  82. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators.rb +6 -0
  83. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/commands/create_observable_middleware.rb +104 -0
  84. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/commands.rb +3 -0
  85. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern/class_methods.rb +115 -0
  86. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern/instance_methods.rb +70 -0
  87. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/concern.rb +32 -0
  88. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/constants.rb +36 -0
  89. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/structs/intended_method.rb +23 -0
  90. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base/structs.rb +3 -0
  91. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/base.rb +26 -0
  92. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/commands/create_observable_middleware.rb +90 -0
  93. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/commands.rb +3 -0
  94. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern/class_methods.rb +37 -0
  95. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern/instance_methods.rb +115 -0
  96. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern.rb +32 -0
  97. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/entities/method_chain.rb +86 -0
  98. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/entities.rb +3 -0
  99. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain.rb +34 -0
  100. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/classic.rb +42 -0
  101. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares.rb +6 -0
  102. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/stack.rb +58 -23
  103. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities.rb +2 -2
  104. data/lib/convenient_service/core/entities/config/entities/method_middlewares.rb +2 -2
  105. data/lib/convenient_service/core/entities/config/exceptions.rb +64 -0
  106. data/lib/convenient_service/core/entities/config.rb +32 -9
  107. data/lib/convenient_service/core/entities.rb +0 -1
  108. data/lib/convenient_service/core.rb +8 -5
  109. data/lib/convenient_service/dependencies/built_in.rb +18 -4
  110. data/lib/convenient_service/dependencies/extractions/active_support_backtrace_cleaner/backtrace_cleaner.rb +149 -0
  111. data/lib/convenient_service/dependencies/extractions/active_support_backtrace_cleaner.rb +15 -0
  112. data/lib/convenient_service/dependencies/extractions/active_support_concern/concern.rb +19 -2
  113. data/lib/convenient_service/dependencies/extractions/active_support_concern.rb +8 -3
  114. data/lib/convenient_service/dependencies/extractions/ruby_middleware/middleware/builder.rb +7 -1
  115. data/lib/convenient_service/dependencies/extractions/ruby_middleware/middleware/logger.rb +7 -1
  116. data/lib/convenient_service/dependencies/extractions/ruby_middleware/middleware/runner.rb +15 -1
  117. data/lib/convenient_service/dependencies/extractions/ruby_middleware/middleware.rb +8 -1
  118. data/lib/convenient_service/dependencies/extractions/ruby_middleware.rb +3 -2
  119. data/lib/convenient_service/dependencies.rb +269 -30
  120. data/lib/convenient_service/examples/dry/gemfile/dry_service/config.rb +19 -21
  121. data/lib/convenient_service/examples/dry/gemfile/services/assert_file_exists.rb +1 -1
  122. data/lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb +1 -1
  123. data/lib/convenient_service/examples/dry/gemfile/services/assert_node_available.rb +2 -2
  124. data/lib/convenient_service/examples/dry/gemfile/services/assert_npm_package_available.rb +2 -2
  125. data/lib/convenient_service/examples/dry/gemfile/services/assert_valid_ruby_syntax.rb +2 -2
  126. data/lib/convenient_service/examples/dry/gemfile/services/format.rb +1 -1
  127. data/lib/convenient_service/examples/dry/gemfile/services/format_body.rb +1 -1
  128. data/lib/convenient_service/examples/dry/gemfile/services/format_gems_with_envs.rb +1 -1
  129. data/lib/convenient_service/examples/dry/gemfile/services/format_gems_without_envs.rb +1 -1
  130. data/lib/convenient_service/examples/dry/gemfile/services/format_header.rb +1 -1
  131. data/lib/convenient_service/examples/dry/gemfile/services/parse_content.rb +1 -1
  132. data/lib/convenient_service/examples/dry/gemfile/services/print_shell_command.rb +11 -4
  133. data/lib/convenient_service/examples/dry/gemfile/services/read_file_content.rb +1 -1
  134. data/lib/convenient_service/examples/dry/gemfile/services/{run_shell.rb → run_shell_command.rb} +10 -5
  135. data/lib/convenient_service/examples/dry/gemfile/services/strip_comments.rb +2 -2
  136. data/lib/convenient_service/examples/dry/gemfile/services.rb +3 -2
  137. data/lib/convenient_service/examples/dry/gemfile.rb +5 -5
  138. data/lib/convenient_service/examples/rails/gemfile/rails_service/config.rb +28 -30
  139. data/lib/convenient_service/examples/rails/gemfile/services/assert_file_exists.rb +2 -2
  140. data/lib/convenient_service/examples/rails/gemfile/services/assert_file_not_empty.rb +2 -2
  141. data/lib/convenient_service/examples/rails/gemfile/services/assert_node_available.rb +2 -2
  142. data/lib/convenient_service/examples/rails/gemfile/services/assert_npm_package_available.rb +3 -3
  143. data/lib/convenient_service/examples/rails/gemfile/services/assert_valid_ruby_syntax.rb +2 -2
  144. data/lib/convenient_service/examples/rails/gemfile/services/format.rb +2 -2
  145. data/lib/convenient_service/examples/rails/gemfile/services/format_body.rb +1 -1
  146. data/lib/convenient_service/examples/rails/gemfile/services/format_gems_with_envs.rb +1 -1
  147. data/lib/convenient_service/examples/rails/gemfile/services/format_gems_without_envs.rb +1 -1
  148. data/lib/convenient_service/examples/rails/gemfile/services/format_header.rb +1 -1
  149. data/lib/convenient_service/examples/rails/gemfile/services/merge_sections.rb +3 -3
  150. data/lib/convenient_service/examples/rails/gemfile/services/parse_content.rb +2 -2
  151. data/lib/convenient_service/examples/rails/gemfile/services/print_shell_command.rb +11 -4
  152. data/lib/convenient_service/examples/rails/gemfile/services/read_file_content.rb +2 -2
  153. data/lib/convenient_service/examples/rails/gemfile/services/replace_file_content.rb +3 -3
  154. data/lib/convenient_service/examples/rails/gemfile/services/{run_shell.rb → run_shell_command.rb} +11 -6
  155. data/lib/convenient_service/examples/rails/gemfile/services/strip_comments.rb +3 -3
  156. data/lib/convenient_service/examples/rails/gemfile/services.rb +2 -2
  157. data/lib/convenient_service/examples/rails/gemfile.rb +5 -5
  158. data/lib/convenient_service/examples/standard/cowsay/services/build_cloud.rb +1 -1
  159. data/lib/convenient_service/examples/standard/cowsay/services/build_cow.rb +1 -1
  160. data/lib/convenient_service/examples/standard/cowsay/services/print.rb +1 -1
  161. data/lib/convenient_service/examples/standard/cowsay.rb +5 -5
  162. data/lib/convenient_service/examples/standard/date_time/services/safe_parse.rb +31 -0
  163. data/lib/convenient_service/examples/standard/date_time/services.rb +3 -0
  164. data/lib/convenient_service/examples/standard/date_time.rb +23 -0
  165. data/lib/convenient_service/examples/standard/factorial/services/calculate.rb +49 -0
  166. data/lib/convenient_service/examples/standard/factorial/services.rb +3 -0
  167. data/lib/convenient_service/examples/standard/factorial/utils/timeout/with_timeout.rb +50 -0
  168. data/lib/convenient_service/examples/standard/factorial/utils/timeout.rb +21 -0
  169. data/lib/convenient_service/examples/standard/factorial/utils.rb +3 -0
  170. data/lib/convenient_service/examples/standard/factorial.rb +24 -0
  171. data/lib/convenient_service/examples/standard/gemfile/services/assert_file_exists.rb +2 -2
  172. data/lib/convenient_service/examples/standard/gemfile/services/assert_file_not_empty.rb +2 -2
  173. data/lib/convenient_service/examples/standard/gemfile/services/assert_node_available.rb +2 -11
  174. data/lib/convenient_service/examples/standard/gemfile/services/assert_npm_package_available.rb +2 -12
  175. data/lib/convenient_service/examples/standard/gemfile/services/assert_valid_ruby_syntax.rb +2 -2
  176. data/lib/convenient_service/examples/standard/gemfile/services/format.rb +1 -11
  177. data/lib/convenient_service/examples/standard/gemfile/services/format_body.rb +1 -1
  178. data/lib/convenient_service/examples/standard/gemfile/services/format_gems_with_envs.rb +1 -1
  179. data/lib/convenient_service/examples/standard/gemfile/services/format_gems_without_envs.rb +1 -1
  180. data/lib/convenient_service/examples/standard/gemfile/services/format_header.rb +1 -1
  181. data/lib/convenient_service/examples/standard/gemfile/services/merge_sections.rb +1 -11
  182. data/lib/convenient_service/examples/standard/gemfile/services/parse_content.rb +1 -11
  183. data/lib/convenient_service/examples/standard/gemfile/services/print_shell_command.rb +15 -8
  184. data/lib/convenient_service/examples/standard/gemfile/services/read_file_content.rb +2 -12
  185. data/lib/convenient_service/examples/standard/gemfile/services/replace_file_content.rb +1 -11
  186. data/lib/convenient_service/examples/standard/gemfile/services/{run_shell.rb → run_shell_command.rb} +22 -5
  187. data/lib/convenient_service/examples/standard/gemfile/services/strip_comments.rb +2 -2
  188. data/lib/convenient_service/examples/standard/gemfile/services.rb +2 -2
  189. data/lib/convenient_service/examples/standard/gemfile.rb +5 -5
  190. data/lib/convenient_service/examples/standard/request_params/constants.rb +1 -1
  191. data/lib/convenient_service/examples/standard/request_params/entities/description.rb +1 -1
  192. data/lib/convenient_service/examples/standard/request_params/entities/format.rb +1 -1
  193. data/lib/convenient_service/examples/standard/request_params/entities/id.rb +1 -1
  194. data/lib/convenient_service/examples/standard/request_params/entities/logger.rb +1 -1
  195. data/lib/convenient_service/examples/standard/request_params/entities/request.rb +1 -1
  196. data/lib/convenient_service/examples/standard/request_params/entities/source.rb +1 -1
  197. data/lib/convenient_service/examples/standard/request_params/entities/tag.rb +1 -1
  198. data/lib/convenient_service/examples/standard/request_params/entities/title.rb +1 -1
  199. data/lib/convenient_service/examples/standard/request_params/services/apply_default_param_values.rb +1 -1
  200. data/lib/convenient_service/examples/standard/request_params/services/cast_params.rb +1 -1
  201. data/lib/convenient_service/examples/standard/request_params/services/extract_params_from_body.rb +1 -11
  202. data/lib/convenient_service/examples/standard/request_params/services/extract_params_from_path.rb +1 -11
  203. data/lib/convenient_service/examples/standard/request_params/services/filter_out_unpermitted_params.rb +1 -1
  204. data/lib/convenient_service/examples/standard/request_params/services/log_request_params.rb +1 -1
  205. data/lib/convenient_service/examples/standard/request_params/services/merge_params.rb +1 -1
  206. data/lib/convenient_service/examples/standard/request_params/services/prepare.rb +1 -1
  207. data/lib/convenient_service/examples/standard/request_params/services/validate_casted_params.rb +1 -11
  208. data/lib/convenient_service/examples/standard/request_params/services/validate_uncasted_params.rb +1 -11
  209. data/lib/convenient_service/examples/standard/request_params/utils/array/wrap.rb +2 -2
  210. data/lib/convenient_service/examples/standard/request_params/utils/array.rb +1 -1
  211. data/lib/convenient_service/examples/standard/request_params/utils/http/request/parse_body.rb +2 -2
  212. data/lib/convenient_service/examples/standard/request_params/utils/http/request/parse_path.rb +2 -2
  213. data/lib/convenient_service/examples/standard/request_params/utils/http/request.rb +1 -1
  214. data/lib/convenient_service/examples/standard/request_params/utils/integer/safe_parse.rb +2 -2
  215. data/lib/convenient_service/examples/standard/request_params/utils/integer.rb +1 -1
  216. data/lib/convenient_service/examples/standard/request_params/utils/json/safe_parse.rb +2 -2
  217. data/lib/convenient_service/examples/standard/request_params/utils/json.rb +1 -1
  218. data/lib/convenient_service/examples/standard/request_params/utils/object/blank.rb +2 -2
  219. data/lib/convenient_service/examples/standard/request_params/utils/object/present.rb +2 -2
  220. data/lib/convenient_service/examples/standard/request_params/utils/object.rb +1 -1
  221. data/lib/convenient_service/examples/standard/request_params/utils/url/valid.rb +47 -0
  222. data/lib/convenient_service/examples/standard/request_params/utils/url.rb +21 -0
  223. data/lib/convenient_service/examples/standard/request_params/utils.rb +1 -0
  224. data/lib/convenient_service/examples/standard/request_params.rb +5 -5
  225. data/lib/convenient_service/exception.rb +16 -0
  226. data/lib/convenient_service/feature.rb +11 -0
  227. data/lib/convenient_service/logger.rb +71 -25
  228. data/lib/convenient_service/rspec/helpers/custom/ignoring_exception/exceptions.rb +27 -0
  229. data/lib/convenient_service/rspec/helpers/custom/ignoring_exception.rb +51 -0
  230. data/lib/convenient_service/rspec/helpers/custom/in_threads.rb +74 -0
  231. data/lib/convenient_service/rspec/helpers/custom/stub_service/constants.rb +20 -0
  232. data/lib/convenient_service/rspec/helpers/custom/stub_service/entities/result_spec.rb +2 -2
  233. data/lib/convenient_service/rspec/helpers/custom/stub_service/entities/stubbed_service.rb +22 -18
  234. data/lib/convenient_service/rspec/helpers/custom/stub_service.rb +1 -0
  235. data/lib/convenient_service/rspec/helpers/custom/wrap_method/entities/wrapped_method.rb +113 -56
  236. data/lib/convenient_service/rspec/helpers/custom/wrap_method/{errors.rb → exceptions.rb} +2 -2
  237. data/lib/convenient_service/rspec/helpers/custom/wrap_method.rb +31 -7
  238. data/lib/convenient_service/rspec/helpers/custom.rb +2 -1
  239. data/lib/convenient_service/rspec/helpers/ignoring_exception.rb +13 -0
  240. data/lib/convenient_service/rspec/helpers/{ignoring_error.rb → in_threads.rb} +3 -3
  241. data/lib/convenient_service/rspec/helpers.rb +4 -2
  242. data/lib/convenient_service/rspec/matchers/custom/be_descendant_of.rb +1 -1
  243. data/lib/convenient_service/rspec/matchers/custom/cache_its_value.rb +20 -0
  244. data/lib/convenient_service/rspec/matchers/custom/call_chain_next.rb +103 -2
  245. data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings/sub_matchers/return_its_value.rb +3 -0
  246. data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings/sub_matchers/with_concrete_arguments.rb +1 -1
  247. data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings_collection/{errors.rb → exceptions.rb} +4 -4
  248. data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings_collection.rb +11 -11
  249. data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/delegation.rb +3 -3
  250. data/lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher.rb +5 -5
  251. data/lib/convenient_service/rspec/matchers/custom/delegate_to.rb +13 -3
  252. data/lib/convenient_service/rspec/matchers/custom/export.rb +82 -0
  253. data/lib/convenient_service/rspec/matchers/custom/have_abstract_method.rb +1 -1
  254. data/lib/convenient_service/rspec/matchers/custom/have_alias_method.rb +3 -0
  255. data/lib/convenient_service/rspec/matchers/custom/results/base/constants.rb +31 -0
  256. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/chain.rb +226 -0
  257. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_code_part.rb +61 -0
  258. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_data_part.rb +61 -0
  259. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_message_part.rb +61 -0
  260. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_parts.rb +121 -0
  261. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_service_part.rb +61 -0
  262. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_status_part.rb +68 -0
  263. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_expected_step_part.rb +61 -0
  264. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_parts.rb +98 -0
  265. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_service_part.rb +68 -0
  266. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands/generate_got_step_part.rb +68 -0
  267. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base/commands.rb +13 -0
  268. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/base.rb +207 -0
  269. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error/commands/generate_got_jsend_attributes_part.rb +120 -0
  270. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error/commands.rb +3 -0
  271. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/error.rb +34 -0
  272. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure/commands/generate_got_jsend_attributes_part.rb +121 -0
  273. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure/commands.rb +3 -0
  274. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/failure.rb +34 -0
  275. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/null.rb +147 -0
  276. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success/commands/generate_got_jsend_attributes_part.rb +96 -0
  277. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success/commands.rb +3 -0
  278. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers/success.rb +34 -0
  279. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/printers.rb +46 -0
  280. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result.rb +121 -0
  281. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_code.rb +97 -0
  282. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_data.rb +97 -0
  283. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_message.rb +97 -0
  284. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_service.rb +81 -0
  285. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_status.rb +92 -0
  286. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_step.rb +127 -0
  287. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands/validate_result_type.rb +89 -0
  288. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator/commands.rb +10 -0
  289. data/lib/convenient_service/rspec/matchers/custom/results/base/entities/validator.rb +123 -0
  290. data/lib/convenient_service/rspec/matchers/custom/results/base/entities.rb +5 -0
  291. data/lib/convenient_service/rspec/matchers/custom/results/base/{errors.rb → exceptions.rb} +8 -2
  292. data/lib/convenient_service/rspec/matchers/custom/results/base.rb +113 -149
  293. data/lib/convenient_service/rspec/matchers/custom/results/be_error.rb +6 -1
  294. data/lib/convenient_service/rspec/matchers/custom/results/be_failure.rb +6 -1
  295. data/lib/convenient_service/rspec/matchers/custom/results/be_not_error.rb +7 -2
  296. data/lib/convenient_service/rspec/matchers/custom/results/be_not_failure.rb +7 -2
  297. data/lib/convenient_service/rspec/matchers/custom/results/be_not_success.rb +7 -2
  298. data/lib/convenient_service/rspec/matchers/custom/results/be_success.rb +6 -1
  299. data/lib/convenient_service/rspec/matchers/custom.rb +1 -0
  300. data/lib/convenient_service/rspec/matchers/export.rb +13 -0
  301. data/lib/convenient_service/rspec/matchers/results/be_error.rb +3 -0
  302. data/lib/convenient_service/rspec/matchers/results/be_failure.rb +3 -0
  303. data/lib/convenient_service/rspec/matchers/results/be_not_error.rb +3 -0
  304. data/lib/convenient_service/rspec/matchers/results/be_not_failure.rb +3 -0
  305. data/lib/convenient_service/rspec/matchers/results/be_not_success.rb +3 -0
  306. data/lib/convenient_service/rspec/matchers/results/be_success.rb +3 -0
  307. data/lib/convenient_service/rspec/matchers.rb +2 -0
  308. data/lib/convenient_service/service/plugins/aliases.rb +0 -2
  309. data/lib/convenient_service/service/plugins/can_have_fallback/concern.rb +93 -0
  310. data/lib/convenient_service/service/plugins/can_have_fallback/exceptions.rb +36 -0
  311. data/lib/convenient_service/service/plugins/can_have_fallback/middleware.rb +30 -0
  312. data/lib/convenient_service/service/plugins/can_have_fallback.rb +5 -0
  313. data/lib/convenient_service/service/plugins/can_have_method_steps/middleware.rb +7 -26
  314. data/lib/convenient_service/service/plugins/can_have_steps/concern.rb +5 -2
  315. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/cast_method.rb +46 -11
  316. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/cast_method_direction.rb +29 -2
  317. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/cast_method_factory.rb +113 -0
  318. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/define_method_in_container.rb +2 -2
  319. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands.rb +1 -3
  320. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/concern/instance_methods.rb +96 -26
  321. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/alias.rb +2 -2
  322. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/base.rb +49 -7
  323. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/proc.rb +1 -1
  324. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/raw.rb +1 -1
  325. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/reassignment.rb +2 -2
  326. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/usual.rb +2 -2
  327. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/base.rb +27 -4
  328. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/input.rb +2 -2
  329. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/output.rb +1 -1
  330. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb +62 -0
  331. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/hash/base.rb +35 -0
  332. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/hash/proc_value.rb +42 -0
  333. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/hash/raw_value.rb +42 -0
  334. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/hash/reassignment_value.rb +42 -0
  335. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/hash/string_value.rb +42 -0
  336. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/hash/symbol_value.rb +42 -0
  337. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/hash.rb +8 -0
  338. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/method.rb +40 -0
  339. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/reassignment.rb +40 -0
  340. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/string.rb +40 -0
  341. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/symbol.rb +40 -0
  342. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories.rb +8 -0
  343. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/key.rb +31 -1
  344. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/name.rb +31 -1
  345. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities.rb +1 -0
  346. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/{errors.rb → exceptions.rb} +81 -15
  347. data/lib/convenient_service/service/plugins/can_have_steps/entities/method.rb +1 -1
  348. data/lib/convenient_service/service/plugins/can_have_steps/entities/service/concern/class_methods.rb +46 -0
  349. data/lib/convenient_service/service/plugins/can_have_steps/entities/service/concern/instance_methods.rb +64 -0
  350. data/lib/convenient_service/service/plugins/can_have_steps/entities/service/concern.rb +28 -0
  351. data/lib/convenient_service/service/plugins/can_have_steps/entities/service.rb +7 -30
  352. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/commands/cast_params.rb +39 -2
  353. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/commands/extract_params.rb +2 -4
  354. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/concern/instance_methods.rb +229 -64
  355. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/exceptions.rb +27 -0
  356. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/aliases.rb +7 -0
  357. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_completed/concern.rb +44 -0
  358. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_completed.rb +3 -0
  359. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_executed/middleware.rb +36 -0
  360. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_executed.rb +3 -0
  361. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_printed/middleware.rb +32 -0
  362. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_printed.rb +3 -0
  363. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/concern.rb +37 -0
  364. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step.rb +6 -0
  365. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed/exceptions.rb +38 -0
  366. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed/middleware.rb +72 -0
  367. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed.rb +4 -0
  368. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/concern.rb +30 -0
  369. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step.rb +5 -0
  370. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/concern.rb +53 -0
  371. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/middleware.rb +34 -0
  372. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback/result.rb +3 -0
  373. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallback.rb +4 -0
  374. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_parent_result/middleware.rb +4 -2
  375. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect/concern.rb +45 -0
  376. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect.rb +3 -0
  377. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_inspect/concern.rb +5 -1
  378. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins.rb +6 -0
  379. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/structs/params.rb +1 -1
  380. data/lib/convenient_service/service/plugins/can_have_steps/entities/step.rb +1 -1
  381. data/lib/convenient_service/service/plugins/can_have_steps/entities/step_collection.rb +37 -8
  382. data/lib/convenient_service/service/plugins/can_have_steps/middleware.rb +38 -9
  383. data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/fetch_all_services_stubbed_results_cache.rb +30 -0
  384. data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/fetch_service_stubbed_results_cache.rb +43 -0
  385. data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/get_service_stubbed_result.rb +58 -0
  386. data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/set_service_stubbed_result.rb +66 -0
  387. data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands.rb +6 -0
  388. data/lib/convenient_service/service/plugins/can_have_stubbed_results/concern.rb +46 -0
  389. data/lib/convenient_service/service/plugins/can_have_stubbed_results/container.rb +17 -0
  390. data/lib/convenient_service/service/plugins/can_have_stubbed_results/middleware.rb +65 -0
  391. data/lib/convenient_service/service/plugins/can_have_stubbed_results.rb +6 -0
  392. data/lib/convenient_service/service/plugins/can_recalculate_result/concern.rb +1 -1
  393. data/lib/convenient_service/service/plugins/collects_services_in_exception/commands/extract_service_details.rb +64 -0
  394. data/lib/convenient_service/service/plugins/collects_services_in_exception/commands.rb +3 -0
  395. data/lib/convenient_service/service/plugins/collects_services_in_exception/constants.rb +16 -0
  396. data/lib/convenient_service/service/plugins/collects_services_in_exception/middleware.rb +50 -0
  397. data/lib/convenient_service/service/plugins/collects_services_in_exception.rb +5 -0
  398. data/lib/convenient_service/service/plugins/counts_stubbed_results_invocations/middleware.rb +24 -0
  399. data/lib/convenient_service/service/plugins/counts_stubbed_results_invocations.rb +3 -0
  400. data/lib/convenient_service/service/plugins/has_awesome_print_inspect/concern.rb +39 -0
  401. data/lib/convenient_service/service/plugins/has_awesome_print_inspect.rb +3 -0
  402. data/lib/convenient_service/service/plugins/has_inspect/concern.rb +8 -1
  403. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/commands/create_result_class.rb +1 -1
  404. data/lib/convenient_service/service/plugins/has_j_send_result/commands/is_result.rb +34 -0
  405. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/commands.rb +2 -0
  406. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/concern/class_methods.rb +21 -18
  407. data/lib/convenient_service/service/plugins/has_j_send_result/concern/instance_methods.rb +49 -0
  408. data/lib/convenient_service/service/plugins/has_j_send_result/concern.rb +22 -0
  409. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/constants.rb +1 -1
  410. data/lib/convenient_service/service/plugins/has_j_send_result/container.rb +21 -0
  411. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/concern.rb +1 -1
  412. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/aliases.rb +7 -0
  413. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_own_result/concern.rb +142 -0
  414. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_own_result.rb +3 -0
  415. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_stubbed_result/concern.rb +30 -0
  416. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_stubbed_result.rb +3 -0
  417. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status/concern.rb +30 -0
  418. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status/middleware.rb +43 -0
  419. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status.rb +4 -0
  420. 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
  421. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_fallback.rb +3 -0
  422. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/can_have_parent_result/concern.rb +19 -9
  423. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes/concern/class_methods.rb → has_j_send_result/entities/result/plugins/can_have_parent_result/constants.rb} +4 -5
  424. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_parent_result.rb +4 -0
  425. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_step/concern.rb +30 -0
  426. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_step.rb +3 -0
  427. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/can_recalculate_result/concern.rb +1 -1
  428. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect/concern.rb +38 -0
  429. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect.rb +3 -0
  430. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_inspect/concern.rb +2 -3
  431. 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
  432. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_code_class.rb +49 -0
  433. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_data_class.rb +49 -0
  434. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_message_class.rb +49 -0
  435. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands/create_status_class.rb +49 -0
  436. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/commands.rb +7 -0
  437. 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
  438. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes}/concern/instance_methods.rb +59 -15
  439. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes}/concern.rb +2 -2
  440. 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
  441. 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
  442. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes}/entities/code/concern/class_methods.rb +15 -3
  443. 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
  444. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes}/entities/code/concern.rb +2 -2
  445. 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
  446. 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
  447. 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
  448. 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
  449. 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
  450. 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
  451. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes}/entities/code.rb +4 -2
  452. 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
  453. 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
  454. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern/class_methods.rb +50 -0
  455. 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
  456. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/concern.rb +36 -0
  457. 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
  458. 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
  459. 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
  460. 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
  461. 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
  462. 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
  463. 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
  464. 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
  465. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_step/to_kwargs/middleware.rb → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data.rb} +9 -7
  466. 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
  467. 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
  468. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern/class_methods.rb +52 -0
  469. 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
  470. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/concern.rb +36 -0
  471. 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
  472. 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
  473. 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
  474. 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
  475. 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
  476. 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
  477. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message.rb +27 -0
  478. 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
  479. 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
  480. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern/class_methods.rb +52 -0
  481. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern/instance_methods.rb +140 -0
  482. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/concern.rb +36 -0
  483. 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
  484. 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
  485. 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
  486. 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
  487. 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
  488. 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
  489. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/marks_result_status_as_checked/middleware.rb → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status.rb} +9 -7
  490. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes/errors.rb → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/exceptions.rb} +8 -4
  491. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes}/middleware.rb +9 -7
  492. data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes/structs/jsend_attributes.rb → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/structs/j_send_attributes.rb} +3 -3
  493. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/structs.rb +3 -0
  494. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes.rb +8 -0
  495. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter/concern.rb +30 -0
  496. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter/middleware.rb +38 -0
  497. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_stubbed_result_invocations_counter.rb +4 -0
  498. 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
  499. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/raises_on_not_checked_result_status/middleware.rb +47 -0
  500. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/raises_on_not_checked_result_status.rb +1 -1
  501. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins.rb +15 -0
  502. data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result.rb +1 -1
  503. data/lib/convenient_service/service/plugins/has_j_send_result/exceptions.rb +21 -0
  504. data/lib/convenient_service/service/plugins/has_j_send_result.rb +8 -0
  505. data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_active_model_validations/concern.rb +1 -1
  506. data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_active_model_validations/middleware.rb +4 -2
  507. data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_dry_validation/concern.rb +1 -1
  508. data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_dry_validation/middleware.rb +5 -3
  509. data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/concern.rb +1 -1
  510. 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
  511. 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
  512. data/lib/convenient_service/service/plugins/{has_result_short_syntax/error/errors.rb → has_j_send_result_short_syntax/error/exceptions.rb} +4 -4
  513. data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/error/middleware.rb +5 -3
  514. data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/error.rb +1 -1
  515. data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/commands/assert_kwargs_contain_only_j_send_keys.rb +53 -0
  516. data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/commands.rb +3 -0
  517. data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/exceptions.rb +29 -0
  518. data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax/failure/middleware.rb +23 -0
  519. data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/failure.rb +1 -1
  520. 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
  521. data/lib/convenient_service/service/plugins/{has_result_short_syntax/success/errors.rb → has_j_send_result_short_syntax/success/exceptions.rb} +3 -3
  522. data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/success/middleware.rb +5 -3
  523. data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/success.rb +1 -1
  524. data/lib/convenient_service/service/plugins/has_j_send_result_short_syntax.rb +6 -0
  525. data/lib/convenient_service/service/plugins/{has_result_status_check_short_syntax → has_j_send_result_status_check_short_syntax}/concern.rb +17 -1
  526. data/lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax.rb +3 -0
  527. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/concern.rb +24 -0
  528. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_lines.rb +94 -0
  529. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_method_step_lines.rb +115 -0
  530. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_result_lines.rb +105 -0
  531. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_service_lines.rb +88 -0
  532. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands/generate_service_step_lines.rb +127 -0
  533. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code/commands.rb +7 -0
  534. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/code.rb +90 -0
  535. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/settings.rb +144 -0
  536. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities/template.rb +85 -0
  537. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/entities.rb +5 -0
  538. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart/templates/flowchart.html.erb +95 -0
  539. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities/flowchart.rb +108 -0
  540. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/entities.rb +3 -0
  541. data/lib/convenient_service/service/plugins/has_mermaid_flowchart.rb +4 -0
  542. data/lib/convenient_service/service/plugins/has_result/concern.rb +17 -6
  543. data/lib/convenient_service/service/plugins/has_result/exceptions.rb +21 -0
  544. data/lib/convenient_service/service/plugins/has_result.rb +1 -5
  545. data/lib/convenient_service/service/plugins/raises_on_double_result/{errors.rb → exceptions.rb} +2 -2
  546. data/lib/convenient_service/service/plugins/raises_on_double_result/middleware.rb +11 -9
  547. data/lib/convenient_service/service/plugins/raises_on_double_result.rb +1 -1
  548. data/lib/convenient_service/service/plugins/raises_on_not_result_return_value/exceptions.rb +24 -0
  549. data/lib/convenient_service/service/plugins/raises_on_not_result_return_value/middleware.rb +25 -0
  550. data/lib/convenient_service/service/plugins/raises_on_not_result_return_value.rb +4 -0
  551. data/lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_backtrace.rb +1 -1
  552. data/lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/commands/format_exception.rb +11 -10
  553. data/lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/middleware.rb +51 -10
  554. data/lib/convenient_service/service/plugins/sets_parent_to_foreign_result/middleware.rb +56 -0
  555. data/lib/convenient_service/service/plugins/sets_parent_to_foreign_result.rb +3 -0
  556. data/lib/convenient_service/service/plugins/wraps_result_in_db_transaction/middleware.rb +3 -1
  557. data/lib/convenient_service/service/plugins.rb +14 -6
  558. data/lib/convenient_service/support/abstract_method/{errors.rb → exceptions.rb} +2 -2
  559. data/lib/convenient_service/support/abstract_method.rb +2 -2
  560. data/lib/convenient_service/support/arguments.rb +3 -3
  561. data/lib/convenient_service/support/cache/constants.rb +36 -0
  562. data/lib/convenient_service/support/cache/entities/caches/array/entities/pair.rb +52 -0
  563. data/lib/convenient_service/support/cache/entities/caches/array/entities.rb +3 -0
  564. data/lib/convenient_service/support/cache/entities/caches/array.rb +135 -0
  565. data/lib/convenient_service/support/cache/entities/caches/base.rb +112 -0
  566. data/lib/convenient_service/support/cache/entities/caches/hash.rb +113 -0
  567. data/lib/convenient_service/support/cache/entities/caches/thread_safe_array.rb +89 -0
  568. data/lib/convenient_service/support/cache/entities/caches.rb +8 -0
  569. data/lib/convenient_service/support/cache/entities/key.rb +102 -0
  570. data/lib/convenient_service/support/cache/entities.rb +4 -0
  571. data/lib/convenient_service/support/cache/exceptions.rb +34 -0
  572. data/lib/convenient_service/support/cache.rb +16 -143
  573. data/lib/convenient_service/support/castable/{errors.rb → exceptions.rb} +3 -3
  574. data/lib/convenient_service/support/castable.rb +2 -2
  575. data/lib/convenient_service/support/command.rb +42 -3
  576. data/lib/convenient_service/support/copyable.rb +7 -23
  577. data/lib/convenient_service/support/counter.rb +211 -0
  578. data/lib/convenient_service/support/dependency_container/commands/assert_valid_container.rb +33 -0
  579. data/lib/convenient_service/support/dependency_container/commands/assert_valid_method.rb +58 -0
  580. data/lib/convenient_service/support/dependency_container/commands/assert_valid_scope.rb +5 -4
  581. data/lib/convenient_service/support/dependency_container/commands/define_entry.rb +49 -0
  582. data/lib/convenient_service/support/dependency_container/commands.rb +3 -0
  583. data/lib/convenient_service/support/dependency_container/container.rb +23 -0
  584. data/lib/convenient_service/support/dependency_container/entities/method.rb +49 -12
  585. data/lib/convenient_service/support/dependency_container/entities/method_collection.rb +3 -3
  586. data/lib/convenient_service/support/dependency_container/entry.rb +22 -0
  587. data/lib/convenient_service/support/dependency_container/{errors.rb → exceptions.rb} +6 -6
  588. data/lib/convenient_service/support/dependency_container/export.rb +4 -4
  589. data/lib/convenient_service/support/dependency_container/import.rb +8 -5
  590. data/lib/convenient_service/support/dependency_container.rb +4 -1
  591. data/lib/convenient_service/support/finite_loop.rb +43 -8
  592. data/lib/convenient_service/support/gems/logger.rb +37 -0
  593. data/lib/convenient_service/support/gems/paint.rb +37 -0
  594. data/lib/convenient_service/support/gems.rb +2 -0
  595. data/lib/convenient_service/support/middleware/stack_builder.rb +1 -1
  596. data/lib/convenient_service/support/not_passed.rb +4 -3
  597. data/lib/convenient_service/support/ruby.rb +31 -0
  598. data/lib/convenient_service/support/safe_method.rb +65 -0
  599. data/lib/convenient_service/support/thread_safe_counter.rb +128 -0
  600. data/lib/convenient_service/support/undefined.rb +4 -3
  601. data/lib/convenient_service/support/unique_value.rb +69 -0
  602. data/lib/convenient_service/support.rb +5 -0
  603. data/lib/convenient_service/utils/array/contain_exactly.rb +1 -5
  604. data/lib/convenient_service/utils/array/{errors.rb → exceptions.rb} +2 -2
  605. data/lib/convenient_service/utils/array/find_last.rb +1 -1
  606. data/lib/convenient_service/utils/array/find_yield.rb +1 -1
  607. data/lib/convenient_service/utils/array/limited_push.rb +54 -0
  608. data/lib/convenient_service/utils/array/merge.rb +3 -3
  609. data/lib/convenient_service/utils/array.rb +6 -1
  610. data/lib/convenient_service/utils/class/display_name.rb +49 -0
  611. data/lib/convenient_service/utils/class.rb +20 -0
  612. data/lib/convenient_service/utils/hash/assert_valid_keys.rb +50 -0
  613. data/lib/convenient_service/utils/hash/except.rb +1 -1
  614. data/lib/convenient_service/utils/hash/triple_equality_compare.rb +51 -0
  615. data/lib/convenient_service/utils/hash.rb +10 -0
  616. data/lib/convenient_service/utils/method/defined.rb +50 -6
  617. data/lib/convenient_service/utils/module/class_method_defined.rb +22 -2
  618. data/lib/convenient_service/utils/module/get_own_instance_method.rb +3 -0
  619. data/lib/convenient_service/utils/module/instance_method_defined.rb +22 -2
  620. data/lib/convenient_service/utils/object/clamp_class.rb +77 -0
  621. data/lib/convenient_service/utils/object/duck_class.rb +112 -0
  622. data/lib/convenient_service/utils/object/memoize_including_falsy_values.rb +1 -1
  623. data/lib/convenient_service/utils/object.rb +19 -1
  624. data/lib/convenient_service/utils/string/truncate.rb +69 -0
  625. data/lib/convenient_service/utils/string.rb +5 -0
  626. data/lib/convenient_service/utils.rb +21 -0
  627. data/lib/convenient_service/version.rb +1 -1
  628. data/lib/convenient_service.rb +16 -3
  629. data/minitest.rb +30 -0
  630. metadata +613 -150
  631. data/lib/convenient_service/common/plugins/caches_constructor_params/concern.rb +0 -22
  632. data/lib/convenient_service/common/plugins/caches_constructor_params/entities/constructor_params.rb +0 -34
  633. data/lib/convenient_service/common/plugins/caches_constructor_params/entities.rb +0 -3
  634. data/lib/convenient_service/common/plugins/caches_constructor_params/middleware.rb +0 -17
  635. data/lib/convenient_service/common/plugins/caches_constructor_params.rb +0 -5
  636. data/lib/convenient_service/core/class_methods.rb +0 -81
  637. data/lib/convenient_service/core/entities/classic_middleware.rb +0 -32
  638. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/chain.rb +0 -71
  639. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware.rb +0 -114
  640. data/lib/convenient_service/core/entities/config/errors.rb +0 -27
  641. data/lib/convenient_service/core/instance_methods.rb +0 -54
  642. data/lib/convenient_service/error.rb +0 -16
  643. data/lib/convenient_service/factories/arguments.rb +0 -43
  644. data/lib/convenient_service/factories/results.rb +0 -214
  645. data/lib/convenient_service/factories/services.rb +0 -229
  646. data/lib/convenient_service/factories/step/instance.rb +0 -42
  647. data/lib/convenient_service/factories/step.rb +0 -3
  648. data/lib/convenient_service/factories/steps.rb +0 -126
  649. data/lib/convenient_service/factories.rb +0 -22
  650. data/lib/convenient_service/factory.rb +0 -21
  651. data/lib/convenient_service/rspec/helpers/custom/ignoring_error.rb +0 -32
  652. data/lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_method_step.rb +0 -74
  653. data/lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_result_method_step.rb +0 -66
  654. data/lib/convenient_service/rspec/matchers/custom/results/base/commands/find_result_service_step.rb +0 -48
  655. data/lib/convenient_service/rspec/matchers/custom/results/base/commands/generate_expected_step_part.rb +0 -42
  656. data/lib/convenient_service/rspec/matchers/custom/results/base/commands/generate_got_step_part.rb +0 -42
  657. data/lib/convenient_service/rspec/matchers/custom/results/base/commands/match_result_step.rb +0 -89
  658. data/lib/convenient_service/rspec/matchers/custom/results/base/commands.rb +0 -10
  659. data/lib/convenient_service/service/plugins/can_have_result_step/middleware.rb +0 -43
  660. data/lib/convenient_service/service/plugins/can_have_result_step.rb +0 -3
  661. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/cast_method_caller.rb +0 -74
  662. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/cast_method_key.rb +0 -78
  663. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/cast_method_name.rb +0 -78
  664. data/lib/convenient_service/service/plugins/can_have_steps/entities/service/class_methods.rb +0 -32
  665. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/errors.rb +0 -23
  666. data/lib/convenient_service/service/plugins/can_have_stubbed_result/concern.rb +0 -51
  667. data/lib/convenient_service/service/plugins/can_have_stubbed_result/middleware.rb +0 -36
  668. data/lib/convenient_service/service/plugins/can_have_stubbed_result.rb +0 -4
  669. data/lib/convenient_service/service/plugins/has_result/concern/instance_methods.rb +0 -48
  670. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/initialize/middleware.rb +0 -27
  671. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/initialize.rb +0 -3
  672. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/to_kwargs/middleware.rb +0 -25
  673. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result/to_kwargs.rb +0 -3
  674. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/can_have_parent_result.rb +0 -5
  675. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/commands/cast_jsend_attributes.rb +0 -37
  676. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/commands.rb +0 -3
  677. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/entities/code/concern/instance_methods.rb +0 -65
  678. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/entities/data/class_methods.rb +0 -32
  679. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/entities/data.rb +0 -74
  680. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/entities/message/class_methods.rb +0 -34
  681. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/entities/message.rb +0 -45
  682. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/entities/status/class_methods.rb +0 -34
  683. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/entities/status.rb +0 -77
  684. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes/structs.rb +0 -3
  685. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_jsend_status_and_attributes.rb +0 -8
  686. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax/concern.rb +0 -62
  687. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_result_short_syntax.rb +0 -3
  688. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/initialize/middleware.rb +0 -27
  689. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/initialize.rb +0 -3
  690. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step/to_kwargs.rb +0 -3
  691. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/has_step.rb +0 -5
  692. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/marks_result_status_as_checked.rb +0 -3
  693. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins/raises_on_not_checked_result_status/middleware.rb +0 -33
  694. data/lib/convenient_service/service/plugins/has_result/entities/result/plugins.rb +0 -10
  695. data/lib/convenient_service/service/plugins/has_result/errors.rb +0 -34
  696. data/lib/convenient_service/service/plugins/has_result/middleware.rb +0 -19
  697. data/lib/convenient_service/service/plugins/has_result_short_syntax/failure/commands/refute_kwargs_contain_data_and_extra_keys.rb +0 -29
  698. data/lib/convenient_service/service/plugins/has_result_short_syntax/failure/errors.rb +0 -28
  699. data/lib/convenient_service/service/plugins/has_result_short_syntax/failure/middleware.rb +0 -19
  700. data/lib/convenient_service/service/plugins/has_result_short_syntax/success/commands.rb +0 -3
  701. data/lib/convenient_service/service/plugins/has_result_short_syntax.rb +0 -6
  702. data/lib/convenient_service/service/plugins/has_result_status_check_short_syntax.rb +0 -3
  703. data/lib/convenient_service/services/run_method_in_organizer.rb +0 -28
  704. data/lib/convenient_service/services/run_own_method_in_organizer.rb +0 -64
  705. data/lib/convenient_service/support/cache/key.rb +0 -100
  706. /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/can_recalculate_result.rb +0 -0
  707. /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities/result/plugins/has_inspect.rb +0 -0
  708. /data/lib/convenient_service/service/plugins/{has_result/entities/result/plugins/has_jsend_status_and_attributes → has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes}/entities.rb +0 -0
  709. /data/lib/convenient_service/service/plugins/{has_result → has_j_send_result}/entities.rb +0 -0
  710. /data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_active_model_validations.rb +0 -0
  711. /data/lib/convenient_service/service/plugins/{has_result_params_validations → has_j_send_result_params_validations}/using_dry_validation.rb +0 -0
  712. /data/lib/convenient_service/service/plugins/{has_result_short_syntax → has_j_send_result_short_syntax}/error/commands.rb +0 -0
  713. /data/lib/convenient_service/service/plugins/{has_result_short_syntax/failure → has_j_send_result_short_syntax/success}/commands.rb +0 -0
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ConvenientService
4
+ module Support
5
+ module DependencyContainer
6
+ module Commands
7
+ class AssertValidContainer < Support::Command
8
+ ##
9
+ # @!attribute [r] container
10
+ # @return [Module]
11
+ #
12
+ attr_reader :container
13
+
14
+ ##
15
+ # @param container [Module]
16
+ # @return [void]
17
+ #
18
+ def initialize(container:)
19
+ @container = container
20
+ end
21
+
22
+ ##
23
+ # @return [void]
24
+ # @raise [ConvenientService::Support::DependencyContainer::Exceptions::NotExportableModule]
25
+ #
26
+ def call
27
+ raise Exceptions::NotExportableModule.new(mod: container) unless Utils::Module.include_module?(container, DependencyContainer::Export)
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ConvenientService
4
+ module Support
5
+ module DependencyContainer
6
+ module Commands
7
+ class AssertValidMethod < Support::Command
8
+ ##
9
+ # @!attribute [r] slug
10
+ # @return [String, Symbol]
11
+ #
12
+ attr_reader :slug
13
+
14
+ ##
15
+ # @!attribute [r] scope
16
+ # @return [Symbol]
17
+ #
18
+ attr_reader :scope
19
+
20
+ ##
21
+ # @!attribute [r] container
22
+ # @return [Module]
23
+ #
24
+ attr_reader :container
25
+
26
+ ##
27
+ # @param slug [String, Symbol]
28
+ # @param scope [Symbol]
29
+ # @param container[Module]
30
+ # @return [void]
31
+ #
32
+ def initialize(slug:, scope:, container:)
33
+ @slug = slug
34
+ @scope = scope
35
+ @container = container
36
+ end
37
+
38
+ ##
39
+ # @return [void]
40
+ # @raise [ConvenientService::Support::DependencyContainer::Exceptions::NotExportedMethod]
41
+ #
42
+ def call
43
+ raise Exceptions::NotExportedMethod.new(method_name: slug, method_scope: scope, mod: container) unless method
44
+ end
45
+
46
+ private
47
+
48
+ ##
49
+ # @return [ConvenientService::Support::DependencyContainer::Entities::Method, nil]
50
+ #
51
+ def method
52
+ container.exported_methods.find_by(slug: slug, scope: scope)
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
58
+ end
@@ -7,12 +7,12 @@ module ConvenientService
7
7
  class AssertValidScope < Support::Command
8
8
  ##
9
9
  # @!attribute [r] scope
10
- # @return [Object]
10
+ # @return [Symbol]
11
11
  #
12
12
  attr_reader :scope
13
13
 
14
14
  ##
15
- # @param scope [Object]
15
+ # @param scope [Symbol]
16
16
  # @return [void]
17
17
  #
18
18
  def initialize(scope:)
@@ -20,10 +20,11 @@ module ConvenientService
20
20
  end
21
21
 
22
22
  ##
23
- # @return [Module]
23
+ # @return [void]
24
+ # @raise [ConvenientService::Support::DependencyContainer::Exceptions::InvalidScope]
24
25
  #
25
26
  def call
26
- raise Errors::InvalidScope.new(scope: scope) unless Constants::SCOPES.include?(scope)
27
+ raise Exceptions::InvalidScope.new(scope: scope) unless Constants::SCOPES.include?(scope)
27
28
  end
28
29
  end
29
30
  end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ConvenientService
4
+ module Support
5
+ module DependencyContainer
6
+ module Commands
7
+ class DefineEntry < Support::Command
8
+ ##
9
+ # @!attribute [r] container
10
+ # @return [Module]
11
+ #
12
+ attr_reader :container
13
+
14
+ ##
15
+ # @!attribute [r] name
16
+ # @return [String, Symbol]
17
+ #
18
+ attr_reader :name
19
+
20
+ ##
21
+ # @!attribute [r] body
22
+ # @return [Proc]
23
+ #
24
+ attr_reader :body
25
+
26
+ ##
27
+ # @param container [Module]
28
+ # @param name [String, Symbol]
29
+ # @param body [Proc]
30
+ #
31
+ def initialize(container:, name:, body:)
32
+ @container = container
33
+ @name = name
34
+ @body = body
35
+ end
36
+
37
+ ##
38
+ # @return [String, Symbol]
39
+ #
40
+ def call
41
+ container.define_singleton_method(name, &body)
42
+
43
+ name
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "commands/assert_valid_scope"
4
+ require_relative "commands/assert_valid_container"
5
+ require_relative "commands/assert_valid_method"
4
6
  require_relative "commands/create_methods_module"
7
+ require_relative "commands/define_entry"
5
8
  require_relative "commands/import_method"
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ConvenientService
4
+ module Support
5
+ module DependencyContainer
6
+ module Container
7
+ include Export
8
+
9
+ export :"constants.DEFAULT_SCOPE" do
10
+ Constants::DEFAULT_SCOPE
11
+ end
12
+
13
+ export :"commands.AssertValidContainer" do
14
+ Commands::AssertValidContainer
15
+ end
16
+
17
+ export :"commands.AssertValidScope" do
18
+ Commands::AssertValidScope
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -5,11 +5,13 @@ module ConvenientService
5
5
  module DependencyContainer
6
6
  module Entities
7
7
  class Method
8
+ include Support::Copyable
9
+
8
10
  ##
9
- # @!attribute [r] full_name
11
+ # @!attribute [r] slug
10
12
  # @return [String, Symbol]
11
13
  #
12
- attr_reader :full_name
14
+ attr_reader :slug
13
15
 
14
16
  ##
15
17
  # @!attribute [r] scope
@@ -24,29 +26,37 @@ module ConvenientService
24
26
  attr_reader :body
25
27
 
26
28
  ##
27
- # @param full_name [String, Symbol]
29
+ # @!attribute [r] alias_slug
30
+ # @return [String, Symbol]
31
+ #
32
+ attr_reader :alias_slug
33
+
34
+ ##
35
+ # @param slug [String, Symbol]
28
36
  # @param scope [:instance, :class]
29
37
  # @param body [Proc]
38
+ # @param alias_slug [String, Symbol]
30
39
  # @return [void]
31
40
  #
32
- def initialize(full_name:, scope:, body:)
33
- @full_name = full_name
41
+ def initialize(slug:, scope:, body:, alias_slug: "")
42
+ @slug = slug
34
43
  @scope = scope
35
44
  @body = body
45
+ @alias_slug = alias_slug
36
46
  end
37
47
 
38
48
  ##
39
- # @return [String]
49
+ # @return [Symbol]
40
50
  #
41
51
  def name
42
- @name ||= full_name_parts.last
52
+ @name ||= alias_slug_parts.last || slug_parts.last
43
53
  end
44
54
 
45
55
  ##
46
56
  # @return [Array<ConvenientService::Support::DependencyContainer::Entities::Namespace>]
47
57
  #
48
58
  def namespaces
49
- @namespaces ||= full_name_parts.slice(0..-2).map { |part| Entities::Namespace.new(name: part) }
59
+ @namespaces ||= (alias_slug_parts.any? ? alias_slug_parts : slug_parts).slice(0..-2).map { |part| Entities::Namespace.new(name: part) }
50
60
  end
51
61
 
52
62
  ##
@@ -92,20 +102,47 @@ module ConvenientService
92
102
  def ==(other)
93
103
  return unless other.instance_of?(self.class)
94
104
 
95
- return false if full_name != other.full_name
105
+ return false if slug != other.slug
96
106
  return false if scope != other.scope
97
107
  return false if body != other.body
108
+ return false if alias_slug != other.alias_slug
98
109
 
99
110
  true
100
111
  end
101
112
 
113
+ ##
114
+ # @return [Hash{Symbol => Object}]
115
+ #
116
+ def to_kwargs
117
+ to_arguments.kwargs
118
+ end
119
+
120
+ ##
121
+ # @return [ConvenientService::Support::Arguments]
122
+ #
123
+ def to_arguments
124
+ Support::Arguments.new(
125
+ slug: slug,
126
+ scope: scope,
127
+ body: body,
128
+ alias_slug: alias_slug
129
+ )
130
+ end
131
+
102
132
  private
103
133
 
104
134
  ##
105
- # @return [Array<String>]
135
+ # @return [Array<Symbol>]
136
+ #
137
+ def slug_parts
138
+ @slug_parts ||= Utils::String.split(slug, ".", "::").map(&:to_sym)
139
+ end
140
+
141
+ ##
142
+ # @return [Array<Symbol>]
106
143
  #
107
- def full_name_parts
108
- @full_name_parts ||= Utils::String.split(full_name, ".", "::").map(&:to_sym)
144
+ def alias_slug_parts
145
+ @alias_slug_parts ||= Utils::String.split(alias_slug, ".", "::").map(&:to_sym)
109
146
  end
110
147
  end
111
148
  end
@@ -15,15 +15,15 @@ module ConvenientService
15
15
 
16
16
  ##
17
17
  # @param name [String, Symbol]
18
- # @param full_name [String, Symbol]
18
+ # @param slug [String, Symbol]
19
19
  # @param scope [:instance, :class]
20
20
  # @return [ConvenientService::Support::DependencyContainer::Entities::Method, nil]
21
21
  #
22
- def find_by(name: Support::NOT_PASSED, full_name: Support::NOT_PASSED, scope: Support::NOT_PASSED)
22
+ def find_by(name: Support::NOT_PASSED, slug: Support::NOT_PASSED, scope: Support::NOT_PASSED)
23
23
  rules = []
24
24
 
25
25
  rules << ->(method) { method.name.to_s == name.to_s } if name != Support::NOT_PASSED
26
- rules << ->(method) { method.full_name.to_s == full_name.to_s } if full_name != Support::NOT_PASSED
26
+ rules << ->(method) { method.slug.to_s == slug.to_s } if slug != Support::NOT_PASSED
27
27
  rules << ->(method) { method.scope == scope } if scope != Support::NOT_PASSED
28
28
 
29
29
  condition = Utils::Proc.conjunct(rules)
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ConvenientService
4
+ module Support
5
+ module DependencyContainer
6
+ module Entry
7
+ include Support::Concern
8
+
9
+ class_methods do
10
+ ##
11
+ # @param name [String, Symbol]
12
+ # @param body [Proc]
13
+ # @return [String, Symbol]
14
+ #
15
+ def entry(name, &body)
16
+ Commands::DefineEntry.call(container: self, name: name, body: body)
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -3,8 +3,8 @@
3
3
  module ConvenientService
4
4
  module Support
5
5
  module DependencyContainer
6
- module Errors
7
- class InvalidScope < ConvenientService::Error
6
+ module Exceptions
7
+ class InvalidScope < ::ConvenientService::Exception
8
8
  ##
9
9
  # @param scope [Object]
10
10
  # @return [void]
@@ -29,7 +29,7 @@ module ConvenientService
29
29
  end
30
30
  end
31
31
 
32
- class NotExportableModule < ConvenientService::Error
32
+ class NotExportableModule < ::ConvenientService::Exception
33
33
  ##
34
34
  # @param mod [Module]
35
35
  # @return [void]
@@ -38,14 +38,14 @@ module ConvenientService
38
38
  message = <<~TEXT
39
39
  Module `#{mod}` can NOT export methods.
40
40
 
41
- Did you forget to include `ConvenientService::Container.export` into it?
41
+ Did you forget to include `ConvenientService::DependencyContainer::Export` into it?
42
42
  TEXT
43
43
 
44
44
  super(message)
45
45
  end
46
46
  end
47
47
 
48
- class NotExportedMethod < ConvenientService::Error
48
+ class NotExportedMethod < ::ConvenientService::Exception
49
49
  ##
50
50
  # @param method_name [String]
51
51
  # @param method_scope [Symbol]
@@ -69,7 +69,7 @@ module ConvenientService
69
69
  end
70
70
  end
71
71
 
72
- class NotModule < ConvenientService::Error
72
+ class NotModule < ::ConvenientService::Exception
73
73
  ##
74
74
  # @param klass [Class]
75
75
  # @return [void]
@@ -11,12 +11,12 @@ module ConvenientService
11
11
  # @return [Module]
12
12
  #
13
13
  included do |klass|
14
- raise Errors::NotModule.new(klass: klass) unless klass.instance_of?(::Module)
14
+ raise Exceptions::NotModule.new(klass: klass) unless klass.instance_of?(::Module)
15
15
  end
16
16
 
17
17
  class_methods do
18
18
  ##
19
- # @param full_name [String, Symbol]
19
+ # @param slug [String, Symbol]
20
20
  # @param scope [:instance, :class]
21
21
  # @param body [Proc]
22
22
  # @return [ConvenientService::Support::DependencyContainer::Entities::Method]
@@ -27,10 +27,10 @@ module ConvenientService
27
27
  # You won't ever see a module in Ruby that contains methods for `include` and `prepend` at the same time.
28
28
  # So why `export` should allow to do it?
29
29
  #
30
- def export(full_name, scope: Constants::DEFAULT_SCOPE, &body)
30
+ def export(slug, scope: Constants::DEFAULT_SCOPE, &body)
31
31
  Commands::AssertValidScope.call(scope: scope)
32
32
 
33
- Entities::Method.new(full_name: full_name, scope: scope, body: body).tap { |method| exported_methods << method }
33
+ Entities::Method.new(slug: slug, scope: scope, body: body).tap { |method| exported_methods << method }
34
34
  end
35
35
 
36
36
  ##
@@ -8,20 +8,23 @@ module ConvenientService
8
8
 
9
9
  class_methods do
10
10
  ##
11
- # @param full_name [String, Symbol]
11
+ # @param slug [String, Symbol]
12
+ # @param as [String, Symbol, nil]
12
13
  # @param from [Module]
13
14
  # @param scope [:instance, :class]
14
15
  # @param prepend [Boolean]
15
16
  # @return [ConvenientService::Support::DependencyContainer::Entities::Method]
16
17
  #
17
- def import(full_name, from:, scope: Constants::DEFAULT_SCOPE, prepend: Constants::DEFAULT_PREPEND)
18
+ def import(slug, from:, as: Support::NOT_PASSED, scope: Constants::DEFAULT_SCOPE, prepend: Constants::DEFAULT_PREPEND)
18
19
  Commands::AssertValidScope.call(scope: scope)
19
20
 
20
- raise Errors::NotExportableModule.new(mod: from) unless Utils::Module.include_module?(from, DependencyContainer::Export)
21
+ Commands::AssertValidContainer.call(container: from)
21
22
 
22
- method = from.exported_methods.find_by(full_name: full_name, scope: scope)
23
+ Commands::AssertValidMethod.call(slug: slug, scope: scope, container: from)
23
24
 
24
- raise Errors::NotExportedMethod.new(method_name: full_name, method_scope: scope, mod: from) unless method
25
+ method = from.exported_methods.find_by(slug: slug, scope: scope)
26
+
27
+ method = method.copy(overrides: {kwargs: {alias_slug: as}}) if as != Support::NOT_PASSED
25
28
 
26
29
  Commands::ImportMethod.call(importing_module: self, exported_method: method, prepend: prepend)
27
30
  end
@@ -3,7 +3,10 @@
3
3
  require_relative "dependency_container/commands"
4
4
  require_relative "dependency_container/constants"
5
5
  require_relative "dependency_container/entities"
6
- require_relative "dependency_container/errors"
6
+ require_relative "dependency_container/exceptions"
7
7
 
8
+ require_relative "dependency_container/entry"
8
9
  require_relative "dependency_container/export"
9
10
  require_relative "dependency_container/import"
11
+
12
+ require_relative "dependency_container/container"
@@ -3,10 +3,17 @@
3
3
  module ConvenientService
4
4
  module Support
5
5
  module FiniteLoop
6
+ ##
7
+ # @return [Integer]
8
+ #
6
9
  MAX_ITERATION_COUNT = 1_000
7
10
 
8
- module Errors
9
- class MaxIterationCountExceeded < ::StandardError
11
+ module Exceptions
12
+ class MaxIterationCountExceeded < ::ConvenientService::Exception
13
+ ##
14
+ # @param limit [Integer]
15
+ # @return [void]
16
+ #
10
17
  def initialize(limit:)
11
18
  message = <<~TEXT
12
19
  Max iteration count is exceeded. Current limit is #{limit}.
@@ -18,7 +25,10 @@ module ConvenientService
18
25
  end
19
26
  end
20
27
 
21
- class NoBlockGiven < ::StandardError
28
+ class NoBlockGiven < ::ConvenientService::Exception
29
+ ##
30
+ # @return [void]
31
+ #
22
32
  def initialize
23
33
  message = <<~TEXT
24
34
  `finite_loop` always expects a block to be given.
@@ -31,17 +41,42 @@ module ConvenientService
31
41
 
32
42
  private
33
43
 
34
- def finite_loop(max_iteration_count: MAX_ITERATION_COUNT, raise_on_exceedance: true, &block)
35
- raise Errors::NoBlockGiven.new unless block
44
+ ##
45
+ # @example Provides `self.finite_loop` in order to have a way to use `finite_loop` without including `ConvenientService::Support::FiniteLoop`.
46
+ # ConvenientService::Support::FiniteLoop.finite_loop do |index|
47
+ # break if index > 3
48
+ # end
49
+ #
50
+ module_function
51
+
52
+ ##
53
+ # @param max_iteration_count [Integer]
54
+ # @param raise_on_exceedance [Boolean]
55
+ # @param block [Proc, nil]
56
+ # @return [Object] Can be any type.
57
+ #
58
+ # @example
59
+ # class Person
60
+ # include ConvenientService::Support::FiniteLoop
61
+ #
62
+ # def foo
63
+ # finite_loop do |index|
64
+ # break if index > 3
65
+ # end
66
+ # end
67
+ # end
68
+ #
69
+ def finite_loop(default: nil, max_iteration_count: MAX_ITERATION_COUNT, raise_on_exceedance: true, &block)
70
+ raise Exceptions::NoBlockGiven.new unless block
36
71
 
37
72
  loop.with_index do |_, index|
38
73
  if index >= max_iteration_count
39
- break unless raise_on_exceedance
74
+ break default unless raise_on_exceedance
40
75
 
41
- raise Errors::MaxIterationCountExceeded.new(limit: max_iteration_count)
76
+ raise Exceptions::MaxIterationCountExceeded.new(limit: max_iteration_count)
42
77
  end
43
78
 
44
- block.call(index)
79
+ yield(index)
45
80
  end
46
81
  end
47
82
  end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ConvenientService
4
+ module Support
5
+ module Gems
6
+ class Logger
7
+ class << self
8
+ ##
9
+ # @api private
10
+ #
11
+ # @return [Boolean]
12
+ #
13
+ # @internal
14
+ # `Style/TernaryParentheses` is disabled since `defined?` has too low priority without parentheses.
15
+ #
16
+ # rubocop:disable Style/TernaryParentheses
17
+ def loaded?
18
+ (defined? ::Logger) ? true : false
19
+ end
20
+ # rubocop:enable Style/TernaryParentheses
21
+
22
+ ##
23
+ # @api private
24
+ #
25
+ # @return [ConvenientService::Support::Version]
26
+ #
27
+ # @internal
28
+ # - https://github.com/ruby/logger/blob/v1.5.3/lib/logger/version.rb
29
+ #
30
+ def version
31
+ loaded? ? Support::Version.new(::Logger::VERSION) : Support::Version.null_version
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ConvenientService
4
+ module Support
5
+ module Gems
6
+ class Paint
7
+ class << self
8
+ ##
9
+ # @api private
10
+ #
11
+ # @return [Boolean]
12
+ #
13
+ # @internal
14
+ # `Style/TernaryParentheses` is disabled since `defined?` has too low priority without parentheses.
15
+ #
16
+ # rubocop:disable Style/TernaryParentheses
17
+ def loaded?
18
+ (defined? ::Paint) ? true : false
19
+ end
20
+ # rubocop:enable Style/TernaryParentheses
21
+
22
+ ##
23
+ # @api private
24
+ #
25
+ # @return [ConvenientService::Support::Version]
26
+ #
27
+ # @internal
28
+ # - https://github.com/janlelis/paint/blob/v2.2.1/lib/paint/version.rb
29
+ #
30
+ def version
31
+ loaded? ? Support::Version.new(::Paint::VERSION) : Support::Version.null_version
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -1,4 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "gems/active_model"
4
+ require_relative "gems/logger"
5
+ require_relative "gems/paint"
4
6
  require_relative "gems/rspec"
@@ -13,7 +13,7 @@ module ConvenientService
13
13
  class StackBuilder < Dependencies::Extractions::RubyMiddleware::Middleware::Builder
14
14
  ##
15
15
  # @param opts [Hash]
16
- # @param block [Proc]
16
+ # @param block [Proc, nil]
17
17
  # @return [void]
18
18
  #
19
19
  # @see https://github.com/marian13/ruby-middleware/blob/v0.4.2/lib/middleware/builder.rb#L43
@@ -2,8 +2,9 @@
2
2
 
3
3
  module ConvenientService
4
4
  module Support
5
- NOT_PASSED = ::Object.new.tap do |object|
6
- object.define_singleton_method(:inspect) { "not_passed" }
7
- end
5
+ ##
6
+ # @return [ConvenientService::Support::UniqueValue]
7
+ #
8
+ NOT_PASSED = Support::UniqueValue.new("not_passed")
8
9
  end
9
10
  end