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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1f3cda1e00bba0f7e8c4e86e8831d6bb55385302c2da872cc6a205970938558
4
- data.tar.gz: be1745b3ef9fbc5e7c892d2b15b65eda18afa2879a8c5253d67effe3c9f0c506
3
+ metadata.gz: 4686692f187c6eed32b5bab389f30e138aa547050234676d4cd25271c451287b
4
+ data.tar.gz: c3c7ac1895761d5abb36b6783a4fcaa1167117efc6c42813a201f0e4c64defa1
5
5
  SHA512:
6
- metadata.gz: 9fe6b8fe017c94dec0516b342d1d1bce0ee968487b94cb0695414a5f5781c4cd95e1b42ec2e31f746df430caec82e2c2d39c6423d638bf838d17ab72ba8816c6
7
- data.tar.gz: 4972e2fe5f288b989d42260eb86f4750614a9a16bc2b08a98eae2f6b94c8fb32f10d05daf33f37c9213ec1e134f4962a7c4d9dfba380351c801811acc7eabb01
6
+ metadata.gz: 336c3065ee969a78debe0824585deb22940b96257a3109c663a4348469da28740478bded21dffae4750b1e9889cb839ea2558591c14d81109f873d7929f57a8d
7
+ data.tar.gz: bb8a77dacf096fdb7451d70b5d484d1ecdb074bce0fbbe3faace722e52c6ba39a48b17ef52dfc2fc3252f93b9623182e6b5157e93b444509eb559dd947cbd6af
data/.dev/.tmuxinator.yml CHANGED
@@ -1,3 +1,7 @@
1
+ ##
2
+ # NOTE: Tmuxinator config options.
3
+ # - https://github.com/tmuxinator/tmuxinator#create-a-project
4
+ #
1
5
  name: convenient_service
2
6
  root: .
3
7
 
@@ -13,5 +17,6 @@ windows:
13
17
  panes:
14
18
  - task docker:bash:ruby_2.7
15
19
  - task docker:bash:ruby_3.0
16
- - task docker:bash:ruby_3.1
20
+ - task docker:bash:jruby_9.4
21
+ - task docker:bash:truffleruby_22.3
17
22
  - git status
@@ -60,7 +60,7 @@ jobs:
60
60
  - name: Set up Ruby
61
61
  uses: ruby/setup-ruby@v1
62
62
  with:
63
- ruby-version: 3.1
63
+ ruby-version: 3.2
64
64
  ##
65
65
  # NOTE: Installs the latest compatible Bundler version, runs `bundle install` and caches installed gems.
66
66
  # - https://github.com/ruby/setup-ruby#usage
@@ -88,6 +88,9 @@ jobs:
88
88
  # That is why the well-known Ubuntu is used.
89
89
  # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners
90
90
  #
91
+ # NOTE: List of all possible Ruby, JRuby versions.
92
+ # https://github.com/ruby/setup-ruby/blob/master/ruby-builder-versions.json
93
+ #
91
94
  runs-on: ubuntu-20.04
92
95
  strategy:
93
96
  matrix:
@@ -101,6 +104,23 @@ jobs:
101
104
  #
102
105
  - "3.0"
103
106
  - 3.1
107
+ - 3.2
108
+ ##
109
+ # NOTE: JRuby 9.4 aims CRuby 3.1 compatibility.
110
+ # - https://www.jruby.org/download
111
+ #
112
+ - "jruby-9.4"
113
+ ##
114
+ # NOTE: TruffleRuby 22.3 aims CRuby 3.1 compatibility.
115
+ # - https://www.jruby.org/download
116
+ #
117
+ # IMPORTANT: TruffleRuby 22.3 is currently disabled since too many specs are failing due to CRuby uncompatible code.
118
+ #
119
+ # NOTE: Use `task docker:bash:truffleruby_22.3` and then `task rspec` to reproduce them locally.
120
+ #
121
+ # TODO: Make ConvenientService TruffleRuby 22.3 compatible.
122
+ #
123
+ # - "truffleruby-22.3"
104
124
  env:
105
125
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
106
126
 
@@ -138,6 +158,8 @@ jobs:
138
158
  run: task rspec:rails_5.2
139
159
  - name: Run RSpec with Dry
140
160
  run: task rspec:dry
161
+ - name: Run Minitest
162
+ run: task minitest
141
163
  ##
142
164
  # NOTE: `lcov-result-merger` is written in JS.
143
165
  #
data/.gitignore CHANGED
@@ -1,8 +1,13 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
3
  /_yardoc/
4
+
5
+ ##
6
+ # NOTE: Ignores `coverage` content, but NOT the folder.
7
+ #
4
8
  /coverage/*
5
9
  !/coverage/.gitkeep
10
+
6
11
  /doc/
7
12
  /pkg/
8
13
  /spec/reports/
@@ -25,6 +30,13 @@
25
30
  #
26
31
  /Gemfile*
27
32
 
33
+ ##
34
+ # NOTE: Ignores `gemfiles` content, but NOT the folder.
35
+ # NOTE: `gemfiles` folder is generated by Appraisal.
36
+ #
37
+ /gemfiles/*
38
+ !/gemfiles/.gitkeep
39
+
28
40
  ##
29
41
  # NOTE: Ignores `.DS_Store` in any nesting.
30
42
  #
@@ -32,3 +44,9 @@
32
44
 
33
45
  # Ignore docs
34
46
  /docs/*
47
+
48
+ ##
49
+ # NOTE: Ignores `flowchart.html`, that can be generated by `Service.mermaid_flowchart.save`.
50
+ # Check `HasMermaidFlowchart` for details.
51
+ #
52
+ flowchart.html
@@ -0,0 +1,15 @@
1
+ {
2
+ ////
3
+ // NOTE: `.code-snippets` files support only C-style comments.
4
+ // NOTE: More information about VS Code Snippets can be found here:
5
+ // - https://code.visualstudio.com/docs/editor/userdefinedsnippets
6
+ //
7
+ "CacheItsValue RSpec module": {
8
+ "scope": "ruby",
9
+ "prefix": "CacheItsValue",
10
+ "body": [
11
+ "include ConvenientService::RSpec::Matchers::CacheItsValue",
12
+ ],
13
+ "description": "`CacheItsValue` - a module that allows to use custom RSpec matcher `cache_its_value` to verify caching"
14
+ }
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ ////
3
+ // NOTE: `.code-snippets` files support only C-style comments.
4
+ // NOTE: More information about VS Code Snippets can be found here:
5
+ // - https://code.visualstudio.com/docs/editor/userdefinedsnippets
6
+ //
7
+ "DelegateTo RSpec module": {
8
+ "scope": "ruby",
9
+ "prefix": "DelegateTo",
10
+ "body": [
11
+ "include ConvenientService::RSpec::Matchers::DelegateTo",
12
+ ],
13
+ "description": "`DelegateTo` - a module that allows to use custom RSpec matcher `delegate_to` to verify delegations"
14
+ }
15
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ ////
3
+ // NOTE: `.code-snippets` files support only C-style comments.
4
+ // NOTE: More information about VS Code Snippets can be found here:
5
+ // - https://code.visualstudio.com/docs/editor/userdefinedsnippets
6
+ //
7
+ "cache_its_value RSpec matcher": {
8
+ "scope": "ruby",
9
+ "prefix": "cache_its_value",
10
+ "body": [
11
+ "specify do",
12
+ " expect { $1 }.to cache_its_value",
13
+ "end"
14
+ ],
15
+ "description": "`cache_its_value` - a custom RSpec matcher to verify caching"
16
+ }
17
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ ////
3
+ // NOTE: `.code-snippets` files support only C-style comments.
4
+ // NOTE: More information about VS Code Snippets can be found here:
5
+ // - https://code.visualstudio.com/docs/editor/userdefinedsnippets
6
+ //
7
+ "comparison RSpec example group": {
8
+ "scope": "ruby",
9
+ "prefix": "comparison",
10
+ "body": [
11
+ "example_group \"comparison\" do",
12
+ " describe \"#==\" do",
13
+ " context \"when `other` have different class\" do",
14
+ " let(:other) { 42 }",
15
+ "",
16
+ " it \"returns `nil`\" do",
17
+ " expect(${1:entity} == other).to be_nil",
18
+ " end",
19
+ " end",
20
+ "",
21
+ " context \"when `other` have different ${2:attribute}\" do",
22
+ " let(:other) { described_class.new(${2:attribute}: other_${2:attribute}) }",
23
+ "",
24
+ " it \"returns `false`\" do",
25
+ " expect(${1:entity} == other).to eq(false)",
26
+ " end",
27
+ " end",
28
+ "",
29
+ " context \"when `other` has same attributes\" do",
30
+ " let(:other) { described_class.new }",
31
+ "",
32
+ " it \"returns `true`\" do",
33
+ " expect(${1:entity} == other).to eq(true)",
34
+ " end",
35
+ " end",
36
+ " end",
37
+ "end",
38
+ ],
39
+ "description": "`comparison` - an example group for RSpec to verify `#==`, `#===`, `#equal?`, `#eql?` methods"
40
+ }
41
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ ////
3
+ // NOTE: `.code-snippets` files support only C-style comments.
4
+ // NOTE: More information about VS Code Snippets can be found here:
5
+ // - https://code.visualstudio.com/docs/editor/userdefinedsnippets
6
+ //
7
+ "delegate_to RSpec matcher": {
8
+ "scope": "ruby",
9
+ "prefix": "delegate_to",
10
+ "body": [
11
+ "specify do",
12
+ " expect { $1 }",
13
+ " .to delegate_to($2, $3)",
14
+ " .with_arguments(${4:*args, **kwargs, &block})",
15
+ " .and_return_its_value",
16
+ "end"
17
+ ],
18
+ "description": "`delegate_to` - a custom RSpec matcher to verify delegations"
19
+ }
20
+ }
data/Appraisals CHANGED
@@ -4,8 +4,8 @@
4
4
  # TODO: GitHub wiki for `shouda-matchers`.
5
5
  #
6
6
  # IMPORTANT: `shoulda-matchers` loads active support core extensions.
7
- # https://guides.rubyonrails.org/active_support_core_extensions.html
8
- # https://apidock.com/rails/v6.1.3.1/Hash/symbolize_keys
7
+ # - https://guides.rubyonrails.org/active_support_core_extensions.html
8
+ # - https://apidock.com/rails/v6.1.3.1/Hash/symbolize_keys
9
9
  #
10
10
  # This can lead to the false positive tests. For example:
11
11
  #
@@ -27,7 +27,29 @@
27
27
  #
28
28
  # super
29
29
  # end
30
+ ##
31
+
32
+ ##
33
+ # This wrapper appends Ruby engine and version to the `appraisal_name`.
34
+ # This way every Appraisal has a dedicated Gemfile for any combination of Ruby and particular `appraisal_name`.
35
+ # For example: `ruby_2.7_rails_5.2`, `ruby_3.0_rails_6.0`, `jruby_9.4_rails_7.0`, etc.
36
+ #
37
+ # @note Check `gemfiles` directory.
38
+ #
39
+ # @see https://github.com/thoughtbot/appraisal
40
+ # @see https://github.com/thoughtbot/appraisal/blob/v2.4.1/lib/appraisal/appraisal_file.rb#L30
30
41
  #
42
+ # @param appraisal_name [String]
43
+ # @param block [Proc]
44
+ # @return [void]
45
+ #
46
+ # @internal
47
+ # Taskfile uses a combination of Ruby engine, Ruby version and `appraisal_name` as `{{.APPRAISAL_NAME}}`.
48
+ #
49
+ def appraise(appraisal_name, &block)
50
+ super([::RUBY_ENGINE, ::RUBY_VERSION, appraisal_name].join("_"), &block)
51
+ end
52
+
31
53
  appraise "rails_5.2" do
32
54
  gem "activemodel", "~> 5.2.0"
33
55
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,210 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.0 (2023-08-27)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * **has_j_send_result:** rename HasResult to HasJSendResult
9
+ * **has_result_short_syntax:** allow to pass message to failures
10
+ * **core:** disallow config commitment by missing private method
11
+ * **can_have_stubbed_result:** state explicitly cache backend
12
+ * **has_j_send_status_and_attributes:** use Jsend to JSend
13
+
14
+ ### Features
15
+
16
+ * **alias:** introduce CS alias ([14652d7](https://github.com/marian13/convenient_service/commit/14652d77b6518d1b4ba75fa88eea6aba20ee0e5f))
17
+ * **array-based-cache:** add array-based cache implementation ([795888a](https://github.com/marian13/convenient_service/commit/795888a15dbd1e488fe824e6bb8094b9997044e3))
18
+ * **be_result:** add trigger for BE_RESULT ([d7a416e](https://github.com/marian13/convenient_service/commit/d7a416e39377378655740d9997695c0100b60258))
19
+ * **be_result:** introduce comparing_by ([c304fa7](https://github.com/marian13/convenient_service/commit/c304fa7e4eb15aeae2da075a7947ae835759a605))
20
+ * **cache:** introduce thread safe array ([b592853](https://github.com/marian13/convenient_service/commit/b5928536a7dc3e804d386c553da5b9b1e3da1291))
21
+ * **call_chain_next:** introduce with_any_arguments ([17316d1](https://github.com/marian13/convenient_service/commit/17316d1f4d6f172f81cc0752ddfb36b9bb8338da))
22
+ * **can_be_own_result:** introduce new plugin ([ba7111c](https://github.com/marian13/convenient_service/commit/ba7111c2e01e758affa0e71a4638049fce206243))
23
+ * **can_be_tried:** inroduce CanBeTried for result ([9e68538](https://github.com/marian13/convenient_service/commit/9e68538df1207b5bd7906203728b3860324c6d6c))
24
+ * **can_be_tried:** introduce step try option ([9c1f493](https://github.com/marian13/convenient_service/commit/9c1f4932b3bf8986624dde9c40580e76b0a0a7ac))
25
+ * **can_have_checked_status:** refactor marks_result_status_as_checked to have an ability of a pure status check ([86750dd](https://github.com/marian13/convenient_service/commit/86750dd826ad9b6b8f84e6d26182ac16ec769b8c))
26
+ * **can_have_steps:** allow to pass extra kwargs to step definition ([bd867e3](https://github.com/marian13/convenient_service/commit/bd867e3d7e1147889dab982e2b7bea49a95a3d90))
27
+ * **can_have_steps:** introduce Step#resolved_result ([68ee612](https://github.com/marian13/convenient_service/commit/68ee612800e61e09e3fb9e18a418ee09261da0bc))
28
+ * **can_have_stubbed_results:** use thread safe array backend ([45b9e24](https://github.com/marian13/convenient_service/commit/45b9e249052e154123e1a014a16df0b2b165268b))
29
+ * **can_have_try_result:** introduce middleware ([da24051](https://github.com/marian13/convenient_service/commit/da24051cd240a4ec90f3a970f9f721ec13160dc8))
30
+ * **can_have_try_result:** introduce Service.try_result ([92914dc](https://github.com/marian13/convenient_service/commit/92914dc3090774baa455e59709bb79a6b8c8c48a))
31
+ * **can_have_try_result:** introduce Service#try_result ([521e80f](https://github.com/marian13/convenient_service/commit/521e80f5909bb2c0373a340cb2f4e4c7f3b790c1))
32
+ * **can_have_try_result:** use in minimal config ([bf1135d](https://github.com/marian13/convenient_service/commit/bf1135df3bb650ee4190cbfba7bc2c52bec21885))
33
+ * **can_utilize_finite_loop:** introduce new plugin ([b161ecf](https://github.com/marian13/convenient_service/commit/b161ecf062e9ef2484862d00eadf5ed7cab6c628))
34
+ * **collects_services_in_exception:** add initial version of plugin ([720267a](https://github.com/marian13/convenient_service/commit/720267ab070225892db9743aa379935f16a4b0b5))
35
+ * **configs:** add ok? and not_ok? aliases for success? and not_success? ([5dfb378](https://github.com/marian13/convenient_service/commit/5dfb378ea905bf0fd12e0a78b812ecc208efdf2a))
36
+ * **core:** add trigger for RESOLVE_METHOD_MIDDLEWARES_SUPER_METHOD ([d419985](https://github.com/marian13/convenient_service/commit/d419985dca3e348b1ee8607aadfd2ea4a0cc84be))
37
+ * **core:** commit config from .new ([9e252a0](https://github.com/marian13/convenient_service/commit/9e252a0094e8d55fa5d51c0c33b867f6e16d1882))
38
+ * **core:** introduce has_committed_config? ([ae01495](https://github.com/marian13/convenient_service/commit/ae01495c5360675a1a7e825e90f1993c38392d70))
39
+ * **core:** introduce middleware arguments ([5ca7868](https://github.com/marian13/convenient_service/commit/5ca7868181d44f0f1eb1f2958270e4c6bbb76646))
40
+ * **core:** introduce Middleware.with ([4272262](https://github.com/marian13/convenient_service/commit/427226258cce031679c51a5b4ea900506c995c4a))
41
+ * **core:** introduce MiddlewareCreator ([d1b6ce8](https://github.com/marian13/convenient_service/commit/d1b6ce89fdc008359f9fd0ed080c3cfb28bd39b7))
42
+ * **core:** introduce observable middleware ([f767a13](https://github.com/marian13/convenient_service/commit/f767a13272bcdd4dd7171a9d0bdf4bb8d7f425d7))
43
+ * **core:** introduce observe and use_and_observe ([c19f624](https://github.com/marian13/convenient_service/commit/c19f6246689b3c222d87ff16bba8b65d7b1c04f5))
44
+ * **core:** MiddlewareCreator#new ([e36cee9](https://github.com/marian13/convenient_service/commit/e36cee97a8cceb70fe7564bde516dc31f4b37157))
45
+ * **core:** track method_missing commit triggers ([f3a7264](https://github.com/marian13/convenient_service/commit/f3a7264e3ddb67976fbf2e1c875df15f6f133c0b))
46
+ * **debug:** add Step#output_values without specs ([b7e4712](https://github.com/marian13/convenient_service/commit/b7e47126b22fa93d29198b9e6843a395c4eaad7c))
47
+ * **delegate_to:** add with_any_arguments ([f296e53](https://github.com/marian13/convenient_service/commit/f296e53f19b57128e45cc25cc10edac010ba671c))
48
+ * **depencency_container:** introduce entry ([a905b6e](https://github.com/marian13/convenient_service/commit/a905b6e90cf656a409246f17be84d39c3b4f79c6))
49
+ * **feature:** introduce initial feature ([7413273](https://github.com/marian13/convenient_service/commit/7413273af1d5abad4aee912cc8bffe8f1d6d1d0b))
50
+ * **has_awesome_print_inspect:** add initial has_awesome_print_inspect for result ([8437efe](https://github.com/marian13/convenient_service/commit/8437efe19601f73b333544de2b9522642b313e1e))
51
+ * **has_awesome_print_inspect:** add initial has_awesome_print_inspect for service ([0e5d3c0](https://github.com/marian13/convenient_service/commit/0e5d3c0021e05b6bea10817fc27d23628ef00a04))
52
+ * **has_awesome_print_inspect:** add initial has_awesome_print_inspect for step ([d192327](https://github.com/marian13/convenient_service/commit/d1923276309f044ccb7f6793bc099257aa7970e3))
53
+ * **has_awesome_print_inspect:** add initial HasAwesomePrintInspect for Data ([b5a9b7b](https://github.com/marian13/convenient_service/commit/b5a9b7b8c67f3ee22ee711d8417959918a942630))
54
+ * **has_inspect:** show anonymous class ([87cc634](https://github.com/marian13/convenient_service/commit/87cc63469cb8ecaacc4dbab4817bf43e91cb3e86))
55
+ * **has_inspect:** show anonymous class ([5dc7779](https://github.com/marian13/convenient_service/commit/5dc7779f86431492d6fdbbc2386410c41b5f9164))
56
+ * **has_j_send_status_and_attributes:** add public creators ([a954ef2](https://github.com/marian13/convenient_service/commit/a954ef2cd8020fc8158eba864883e15f0442630b))
57
+ * **has_j_send_status_and_attributes:** allow to compare code by #=== ([54b5025](https://github.com/marian13/convenient_service/commit/54b502580e2e326bb319c4a7de050242bacdf0ba))
58
+ * **has_j_send_status_and_attributes:** allow to compare data by #=== ([a5ce835](https://github.com/marian13/convenient_service/commit/a5ce835da8c0d920dc4a45baf2e599071867511e))
59
+ * **has_j_send_status_and_attributes:** allow to compare message by #=== ([ddd5ffd](https://github.com/marian13/convenient_service/commit/ddd5ffd16596fd4288273df980b9a5c150cdbb1b))
60
+ * **has_j_send_status_and_attributes:** introduce Code.=== ([c2414cc](https://github.com/marian13/convenient_service/commit/c2414cc251c754b6d405494ed2d6e241457e71ff))
61
+ * **has_j_send_status_and_attributes:** introduce Data.=== ([d47202d](https://github.com/marian13/convenient_service/commit/d47202d164fa6215f730d4c75914fd2b53ef7734))
62
+ * **has_j_send_status_and_attributes:** introduce Message.=== ([f936fae](https://github.com/marian13/convenient_service/commit/f936fae60a3743c97ea84ceada6c7bc59d59ece6))
63
+ * **has_j_send_status_and_attributes:** introduce Status.=== ([494a9b3](https://github.com/marian13/convenient_service/commit/494a9b3b9b5cdd8df737c941c93bdbfbb771115f))
64
+ * **has_j_send_status_and_attributes:** link result to status, data, message, code ([dd87723](https://github.com/marian13/convenient_service/commit/dd877234c300151053bae45fd9ae9aac9b74711a))
65
+ * **has_j_send_status_and_attributes:** respect RSpec argument matchers via #=== ([c163b32](https://github.com/marian13/convenient_service/commit/c163b3207bd7fdfec1c5ff1a222de80210f1e6fd))
66
+ * **has_j_send_status_and_attributes:** support partial data matching ([154a4fd](https://github.com/marian13/convenient_service/commit/154a4fda1a83135cabf6fb31b6b65bb6cec3916f))
67
+ * **has_jsend_status_and_attributes:** allow user to provide Code, Data, Message and Status classes ([ff9703e](https://github.com/marian13/convenient_service/commit/ff9703e91c310d6223fbf8c9142c9e41d58498ba))
68
+ * **has_mermaid_flowchart:** introduce experimental flowchart ([73475e6](https://github.com/marian13/convenient_service/commit/73475e6f7067439b867a7d9d193d9759dbfa41cf))
69
+ * **has_result_status_check_short_syntax:** Add two more short bool result checks ([a8a8a8b](https://github.com/marian13/convenient_service/commit/a8a8a8b2c7d6ff90249488dffff892dff90bf914))
70
+ * **has_result:** export commands.is_result? ([17e6bb6](https://github.com/marian13/convenient_service/commit/17e6bb60638f521728735baddab5a623d81e91fd))
71
+ * **has_result:** introduce Commands::IsResult ([94e337a](https://github.com/marian13/convenient_service/commit/94e337a93e4724b7382d6afbfc802ac5601c1cad))
72
+ * **logger:** add version class ([2e5b236](https://github.com/marian13/convenient_service/commit/2e5b2361caf87d6e08854f7b7c53d2d90cc31a60))
73
+ * **logger:** provide fallback for older loggers ([6bbefdc](https://github.com/marian13/convenient_service/commit/6bbefdcd2cceee20588a482af0725b380f897c87))
74
+ * **method_middlewares:** introduce #next_arguments ([a878d51](https://github.com/marian13/convenient_service/commit/a878d511bc8cefabd434d38a0502949bc2604de6))
75
+ * **middlewares:** add intended entity ([d1a5a0f](https://github.com/marian13/convenient_service/commit/d1a5a0fe6b87cc47ab4f9c85722a2707518777f8))
76
+ * **paint:** add version class ([118c650](https://github.com/marian13/convenient_service/commit/118c650c45c8cac20cc9a8c7411b5b091a77b5e0))
77
+ * **rescues_result_unhandled_exceptions:** read max_backtrace_size from middleware arguments ([6d7de5e](https://github.com/marian13/convenient_service/commit/6d7de5ecd38d2a9bc7bc719aa44e86f3a31694d7))
78
+ * **result:** introduce CanBeStubbed plugin ([9a41145](https://github.com/marian13/convenient_service/commit/9a41145a5c100a4bc3169fda34ffb0574edc01ab))
79
+ * **ruby_middleware:** add support of middleware creators ([06bcc15](https://github.com/marian13/convenient_service/commit/06bcc15f6f600e4fc40ec7e1842495f2b37edfd0))
80
+ * **ruby:** check if truffleruby ([341ced1](https://github.com/marian13/convenient_service/commit/341ced193953cd8c51a97ac3c4cb8822433485f0))
81
+ * **service:** extract RaisesOnNotResultReturnValue ([4de15bc](https://github.com/marian13/convenient_service/commit/4de15bce4fbb4f190fdd79a5a478a8e12a5843a2))
82
+ * **sets_parent_to_foreign_result:** include foreign result into parents enum ([b680678](https://github.com/marian13/convenient_service/commit/b680678ee32c2797993084ef4f4a1f18fb01e4f2))
83
+ * **step:** add Step#method_step? ([caefe8e](https://github.com/marian13/convenient_service/commit/caefe8e28ce75fece673998de2181c7d94cc4029))
84
+ * **stub_service:** add trigger for STUB_SERVICE ([047c835](https://github.com/marian13/convenient_service/commit/047c8358cafd86d84ced0f300440d4a08ee10994))
85
+ * **stub_service:** introduce Service::CountsStubbedResultsInvocations and Result::HasStubbedResultInvocationsCounter ([88860a5](https://github.com/marian13/convenient_service/commit/88860a5917f88362670b0fc830b97de79ae83732))
86
+ * **stub_service:** use result stubs by service instances ([3dde79b](https://github.com/marian13/convenient_service/commit/3dde79bdbedfa03abe94f979475cbdb8ee40d799))
87
+ * **support:** add default for finite_loop ([e1c14b9](https://github.com/marian13/convenient_service/commit/e1c14b9b6e221b521714e1742001d44ac57f0d31))
88
+ * **support:** introduce anything ([4a4a287](https://github.com/marian13/convenient_service/commit/4a4a28754aa4325e434e6bce11735e8837680e50))
89
+ * **support:** safe_method ([b37d735](https://github.com/marian13/convenient_service/commit/b37d735c03b08e57d930c9d5cb1c7cd089a07e0a))
90
+ * **support:** ThreadSafeCounter#current_value= ([bf703bb](https://github.com/marian13/convenient_service/commit/bf703bb80e4bdac62edff930ea9e524012dbd221))
91
+ * **utils:** add protected option for Method#defined? ([2bfd1f6](https://github.com/marian13/convenient_service/commit/2bfd1f6210c2774a7f3bb88e9ce7dbb18c40c777))
92
+ * **utils:** introduce clamp_class ([ae1712c](https://github.com/marian13/convenient_service/commit/ae1712c3750d256a61d846e052fedd00856b1aa5))
93
+ * **utils:** introduce Class#display_name ([5316ec1](https://github.com/marian13/convenient_service/commit/5316ec18d58dbbf017683592f177a3185572c7ff))
94
+ * **utils:** introduce Hash#assert_valid_keys ([35b3f68](https://github.com/marian13/convenient_service/commit/35b3f681aa2e544cab7a1c81d00e187325802ad1))
95
+ * **utils:** introduce Hash#triple_equality_compare ([4aeb91f](https://github.com/marian13/convenient_service/commit/4aeb91f8c702b7f6b32d1964b2e5153f67fca9dd))
96
+ * **utils:** introduce shorter Utils.to_bool ([8713470](https://github.com/marian13/convenient_service/commit/87134707bac542f550ea8dae941bb7c0112b33f0))
97
+ * **utils:** introduce String.truncate ([f08e053](https://github.com/marian13/convenient_service/commit/f08e0536b3381e01cd88015bc49036999db58160))
98
+
99
+
100
+ ### Bug Fixes
101
+
102
+ * **be_result:** do not always show JSend attributes ([83c7d20](https://github.com/marian13/convenient_service/commit/83c7d20cc3ada10489abed99ab67c9751739f4f0))
103
+ * **cache:** change order of require ([ba20e90](https://github.com/marian13/convenient_service/commit/ba20e90f822c7fb90819a04256929429f0375136))
104
+ * **cache:** remove accidentally added file ([fac0105](https://github.com/marian13/convenient_service/commit/fac0105885541a950befe441c081bd03a095f58e))
105
+ * **can_be_stubbed_result:** remove typo ([cf9ece7](https://github.com/marian13/convenient_service/commit/cf9ece771b0a97823b0a3f9f1192457b74fa5ef7))
106
+ * **can_have_fallback:** precheck status of fallback results ([e7c0468](https://github.com/marian13/convenient_service/commit/e7c04688d20d22595e228cd164f992fa01821b66))
107
+ * **can_have_try_result:** return copy to have fresh state ([ba5e86d](https://github.com/marian13/convenient_service/commit/ba5e86d8a3a015e54143b6193bf3a806dfe87d95))
108
+ * **can_have_user_provided_entity:** include Core to proto entity as well ([086d15c](https://github.com/marian13/convenient_service/commit/086d15ce2724e8daa7c0ccbe363dea1a1b8fd9fb))
109
+ * **contain_exactly:** using `tally` method ([9639f28](https://github.com/marian13/convenient_service/commit/9639f28900143e9873a579d4dd471bb227217dab))
110
+ * **core:** disallow config commitment by missing private method ([7b3a20b](https://github.com/marian13/convenient_service/commit/7b3a20bedaf0d3c3cfbcab6a5a0d7a004b673a3b))
111
+ * **core:** disallow config commitment by missing private method ([a40d5d1](https://github.com/marian13/convenient_service/commit/a40d5d16abdf9e3c05052adce8caca363834573d))
112
+ * **has_j_send_status_and_attributes:** compare by === manually since Hash does NOT have its own === ([31d5782](https://github.com/marian13/convenient_service/commit/31d57820b5e8d6160d40da3ddf25ab73e6bcef32))
113
+ * **has_j_send_status_and_attributes:** correct comparison order ([a9def90](https://github.com/marian13/convenient_service/commit/a9def90e772324450f9f2cd6a177df5cef7018c9))
114
+ * **has_result_status_check_short_syntax:** Correct implementation of two methods ([5cf6004](https://github.com/marian13/convenient_service/commit/5cf6004bdfe49973452846e452dbcd087074b723))
115
+ * **kwargs:** add compatibility between Ruby 2 and 3 ([a361ad7](https://github.com/marian13/convenient_service/commit/a361ad7334df88339fd372a5bf3f44005234c36e))
116
+ * **method_collection:** fix failed specs ([baa7e1f](https://github.com/marian13/convenient_service/commit/baa7e1f7e5ab694c61cf7d3422b3673e36e57ab4))
117
+ * **middleware_spec:** removed unused require ([0a39c4f](https://github.com/marian13/convenient_service/commit/0a39c4f394fdf484b2cdf20b8e6be5f291fd05c0))
118
+ * Remove /gemfiles directory ([4f11a14](https://github.com/marian13/convenient_service/commit/4f11a140bf53bcf1298707dbee2365c053041824))
119
+ * **support:** move lock to thread safe counter ([b90f2e7](https://github.com/marian13/convenient_service/commit/b90f2e7f424568d75be8cad6cb71a288ce13b1ce))
120
+ * **yard:** remove colon in tags ([81239d7](https://github.com/marian13/convenient_service/commit/81239d7bd37a92de5c727224c992db94e9fe2b61))
121
+
122
+
123
+ ### Performance Improvements
124
+
125
+ * **core:** improve commit_config slightly ([c1738b4](https://github.com/marian13/convenient_service/commit/c1738b4de855a2b3a3f5fa25565f52ccfbd30bb0))
126
+ * **core:** improve config.committed? ([283c9ca](https://github.com/marian13/convenient_service/commit/283c9ca30728dfc6311e472d17a69a3dcfcb565b))
127
+
128
+
129
+ ### Miscellaneous Chores
130
+
131
+ * release 0.13.0 ([7373f3e](https://github.com/marian13/convenient_service/commit/7373f3ecba7ded1a949d4a95aeb99a35214ef806))
132
+
133
+
134
+ ### Code Refactoring
135
+
136
+ * **can_have_stubbed_result:** state explicitly cache backend ([b2e4228](https://github.com/marian13/convenient_service/commit/b2e4228708c0e247a1c509c6a04ae39920998eae))
137
+ * **has_j_send_result:** rename HasResult to HasJSendResult ([fd6846c](https://github.com/marian13/convenient_service/commit/fd6846c78edd9524eaf0121e77ce4e5a64980974))
138
+ * **has_j_send_status_and_attributes:** use Jsend to JSend ([ffb2642](https://github.com/marian13/convenient_service/commit/ffb26424f9ce8f176a148c146c238a2bb1c77ce6))
139
+ * **has_result_short_syntax:** allow to pass message to failures ([4a07a38](https://github.com/marian13/convenient_service/commit/4a07a38ac36cb1564059c9ad39a5c4c007db0f82))
140
+
141
+ ## [0.12.0](https://github.com/marian13/convenient_service/compare/v0.11.0...v0.12.0) (2023-04-01)
142
+
143
+
144
+ ### ⚠ BREAKING CHANGES
145
+
146
+ * **has_j_send_status_and_attributes:** use Jsend to JSend
147
+ * **can_have_method_steps:** bring back CanHaveMethodSteps since it is thread-safe
148
+
149
+ ### Features
150
+
151
+ * **be_result:** add trigger for BE_RESULT ([d7a416e](https://github.com/marian13/convenient_service/commit/d7a416e39377378655740d9997695c0100b60258))
152
+ * **can_have_method_steps:** bring back CanHaveMethodSteps since it is thread-safe ([cbd4f35](https://github.com/marian13/convenient_service/commit/cbd4f35fa22c85f8005582ac06118d1f63337984))
153
+ * **core:** add config constants ([7438742](https://github.com/marian13/convenient_service/commit/7438742268cb808f082cdb9a1a36e8698d73a662))
154
+ * **core:** add method_missing_commits_counter ([9f143a0](https://github.com/marian13/convenient_service/commit/9f143a02c49b078ddbb3a953dc657b1c4c992494))
155
+ * **core:** add trigger for config commitment in class method missing ([97a4acf](https://github.com/marian13/convenient_service/commit/97a4acf06d30e08411790db917867da53f49653b))
156
+ * **core:** add trigger for config commitment in instance method missing ([e1ebfc0](https://github.com/marian13/convenient_service/commit/e1ebfc028d157cadd8a70ebc7321883986db6633))
157
+ * **core:** add trigger for RESOLVE_METHOD_MIDDLEWARES_SUPER_METHOD ([d419985](https://github.com/marian13/convenient_service/commit/d419985dca3e348b1ee8607aadfd2ea4a0cc84be))
158
+ * **core:** add trigger option commit_config! ([2c7c041](https://github.com/marian13/convenient_service/commit/2c7c041f7602710db53e2caf9ab4061579254983))
159
+ * **core:** default commit trigger to user ([127822a](https://github.com/marian13/convenient_service/commit/127822a7da2e6e4c95272e627d101f68ce0f5479))
160
+ * **core:** introduce config commitment triggers ([b92ee50](https://github.com/marian13/convenient_service/commit/b92ee50d7216b6e49464449f9678071bada0109b))
161
+ * **core:** introduce middleware arguments ([5ca7868](https://github.com/marian13/convenient_service/commit/5ca7868181d44f0f1eb1f2958270e4c6bbb76646))
162
+ * **core:** introduce Middleware.with ([4272262](https://github.com/marian13/convenient_service/commit/427226258cce031679c51a5b4ea900506c995c4a))
163
+ * **core:** introduce MiddlewareCreator ([d1b6ce8](https://github.com/marian13/convenient_service/commit/d1b6ce89fdc008359f9fd0ed080c3cfb28bd39b7))
164
+ * **core:** MiddlewareCreator#new ([e36cee9](https://github.com/marian13/convenient_service/commit/e36cee97a8cceb70fe7564bde516dc31f4b37157))
165
+ * **core:** track method_missing commit triggers ([f3a7264](https://github.com/marian13/convenient_service/commit/f3a7264e3ddb67976fbf2e1c875df15f6f133c0b))
166
+ * **depencency_container:** introduce entry ([a905b6e](https://github.com/marian13/convenient_service/commit/a905b6e90cf656a409246f17be84d39c3b4f79c6))
167
+ * **feature:** introduce initial feature ([7413273](https://github.com/marian13/convenient_service/commit/7413273af1d5abad4aee912cc8bffe8f1d6d1d0b))
168
+ * **finite_loop:** introduce FiniteLoop.finite_loop ([ae363c1](https://github.com/marian13/convenient_service/commit/ae363c1b159692b5ef42f09bb6250ee7615d4ffe))
169
+ * **has_jsend_status_and_attributes:** allow user to provide Code, Data, Message and Status classes ([ff9703e](https://github.com/marian13/convenient_service/commit/ff9703e91c310d6223fbf8c9142c9e41d58498ba))
170
+ * **has_result_status_check_short_syntax:** Add two more short bool result checks ([a8a8a8b](https://github.com/marian13/convenient_service/commit/a8a8a8b2c7d6ff90249488dffff892dff90bf914))
171
+ * **in_threads:** introduce in_threads RSpec helper ([dbd54ac](https://github.com/marian13/convenient_service/commit/dbd54ac86f75f45ad03bedd2622efc3d7055d4a2))
172
+ * **rescues_result_unhandled_exceptions:** read max_backtrace_size from middleware arguments ([6d7de5e](https://github.com/marian13/convenient_service/commit/6d7de5ecd38d2a9bc7bc719aa44e86f3a31694d7))
173
+ * **ruby_middleware:** add support of middleware creators ([06bcc15](https://github.com/marian13/convenient_service/commit/06bcc15f6f600e4fc40ec7e1842495f2b37edfd0))
174
+ * **ruby:** check if jruby ([fba70da](https://github.com/marian13/convenient_service/commit/fba70daf5713fa99384e860e33c7db32de4b9e91))
175
+ * **ruby:** check if truffleruby ([341ced1](https://github.com/marian13/convenient_service/commit/341ced193953cd8c51a97ac3c4cb8822433485f0))
176
+ * **stub_service:** add trigger for STUB_SERVICE ([047c835](https://github.com/marian13/convenient_service/commit/047c8358cafd86d84ced0f300440d4a08ee10994))
177
+ * support ruby 3.2 in CI and Docker ([4dc26b9](https://github.com/marian13/convenient_service/commit/4dc26b93c074870362cafaaa15d9625542d51b92))
178
+ * **support:** introduce thread_safe_counter ([ea25f15](https://github.com/marian13/convenient_service/commit/ea25f159091b7bfd71af593e9dadcdb015606a53))
179
+ * **support:** introduce UniqueValue ([b007123](https://github.com/marian13/convenient_service/commit/b0071230455ad80cd206c1e34eb5f59a6f90af61))
180
+ * **support:** safe_method ([b37d735](https://github.com/marian13/convenient_service/commit/b37d735c03b08e57d930c9d5cb1c7cd089a07e0a))
181
+ * **support:** ThreadSafeCounter#current_value= ([bf703bb](https://github.com/marian13/convenient_service/commit/bf703bb80e4bdac62edff930ea9e524012dbd221))
182
+ * **thread_safe_counter:** introduce bincrement and bdecrement ([a0ef972](https://github.com/marian13/convenient_service/commit/a0ef9729eb3bb1e22536375ce7e9cb57a0f7fa7b))
183
+ * **unique_value:** add == consistency ([26c8686](https://github.com/marian13/convenient_service/commit/26c8686cbf52caa932d677d080dc283943b048cb))
184
+ * **unique_value:** add comparisons ([cf02a50](https://github.com/marian13/convenient_service/commit/cf02a505ca1f34e70d50236f691ebbc89fdcb29f))
185
+ * **utils:** introduce Object.resolve_class ([94f6ca2](https://github.com/marian13/convenient_service/commit/94f6ca2178c8bb048b35b10c74d60385fa003079))
186
+
187
+
188
+ ### Bug Fixes
189
+
190
+ * **can_have_steps:** set correct error namaspace ([1f6d647](https://github.com/marian13/convenient_service/commit/1f6d647e1babdd2c565390691a56442ad0fd315c))
191
+ * **can_have_stubbed_result:** add thread-safety ([ef77058](https://github.com/marian13/convenient_service/commit/ef77058a877c903a6156875d02d436ac4216174a))
192
+ * **core:** remove typo in description ([a34323f](https://github.com/marian13/convenient_service/commit/a34323f1a20a0667aba6fdceb77476345a26d1d3))
193
+ * **dependency_container:** remove typo ([fbcfd28](https://github.com/marian13/convenient_service/commit/fbcfd28ccd6747da5c7e7b48aa620206403264e9))
194
+ * **has_result_status_check_short_syntax:** Correct implementation of two methods ([5cf6004](https://github.com/marian13/convenient_service/commit/5cf6004bdfe49973452846e452dbcd087074b723))
195
+ * **logger:** update ENV variable ([86301ce](https://github.com/marian13/convenient_service/commit/86301ce98bcfa18a4bdb7e4d34c283493865bc76))
196
+ * **support:** group examples ([97549e9](https://github.com/marian13/convenient_service/commit/97549e9d2e342041a7d5b64d2bf68dbcedf73ca2))
197
+
198
+
199
+ ### Miscellaneous Chores
200
+
201
+ * release 0.12.0 ([da182b6](https://github.com/marian13/convenient_service/commit/da182b694865ea5e10163193b3219439a6d3be3e))
202
+
203
+
204
+ ### Code Refactoring
205
+
206
+ * **has_j_send_status_and_attributes:** use Jsend to JSend ([ffb2642](https://github.com/marian13/convenient_service/commit/ffb26424f9ce8f176a148c146c238a2bb1c77ce6))
207
+
3
208
  ## [0.11.0](https://github.com/marian13/convenient_service/compare/v0.10.1...v0.11.0) (2023-03-04)
4
209
 
5
210
 
data/Gemfile CHANGED
@@ -2,5 +2,16 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- # Specify your gem's dependencies in convenient_service.gemspec
5
+ ##
6
+ # Specify your gem's dependencies in `convenient_service.gemspec`.
7
+ # - https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
8
+ #
6
9
  gemspec
10
+
11
+ ##
12
+ # TODO: Uncomment if a license key is approved.
13
+ # - https://github.com/mbj/mutant/tree/a19e11a07e71a40cfa62636f7aea611e314de841#getting-an-opensource-license
14
+ #
15
+ # source 'https://${plan}:${key}@gem.mutant.dev' do
16
+ # gem 'mutant-license'
17
+ # end
data/README.md CHANGED
@@ -13,8 +13,14 @@
13
13
  </h1>
14
14
  <!-- header:end -->
15
15
 
16
+ <!-- badges_docs:start -->
17
+ <!-- NOTE: Docs for badges can be found here - https://shields.io -->
18
+ <!-- badges_docs:end -->
19
+
16
20
  <!-- badges:start -->
17
- [![Gem Version](https://badge.fury.io/rb/convenient_service.svg)](https://rubygems.org/gems/convenient_service) [![GitHub Actions CI](https://github.com/marian13/convenient_service/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/marian13/convenient_service/actions/workflows/ci.yml) [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/testdouble/standard) [![Coverage Status](https://coveralls.io/repos/github/marian13/convenient_service/badge.svg)](https://coveralls.io/github/marian13/convenient_service?branch=main) [![inline docs](http://inch-ci.org/github/marian13/convenient_service.svg?branch=main)](http://inch-ci.org/github/marian13/convenient_service)
21
+ [![Ruby](https://img.shields.io/badge/ruby-%23CC342D.svg?style=for-the-badge&logo=ruby&logoColor=white)](https://www.ruby-lang.org/en/)
22
+
23
+ [![Gem Version](https://badge.fury.io/rb/convenient_service.svg)](https://rubygems.org/gems/convenient_service) [![Gem Downloads](https://img.shields.io/gem/dt/convenient_service.svg)](https://rubygems.org/gems/convenient_service) ![visitors](https://visitor-badge.glitch.me/badge?page_id=marian13/convenient_service) ![GitHub repo size](https://img.shields.io/github/repo-size/marian13/convenient_service) [![GitHub Actions CI](https://github.com/marian13/convenient_service/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/marian13/convenient_service/actions/workflows/ci.yml) [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/testdouble/standard) [![Coverage Status](https://coveralls.io/repos/github/marian13/convenient_service/badge.svg)](https://coveralls.io/github/marian13/convenient_service?branch=main) [![inline docs](http://inch-ci.org/github/marian13/convenient_service.svg?branch=main)](http://inch-ci.org/github/marian13/convenient_service) [![yard docs](http://img.shields.io/badge/yard-docs-blue.svg)](https://marian13.github.io/convenient_service/)
18
24
  [![Convenient Service on stackoverflow](https://img.shields.io/badge/stackoverflow-community-orange.svg?logo=stackoverflow)](https://stackoverflow.com/tags/convenient-service)
19
25
  [![Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://www.patreon.com/user?u=31435716&fan_landing=true)
20
26
  [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -34,16 +40,18 @@ Yet another approach to revisit the service object pattern, but this time focusi
34
40
  <!-- warning:start -->
35
41
  ## WARNING ❗❗❗
36
42
 
37
- This library is under heavy development. Public API may be subject to change. The first major release is still to come. Use the current version at your own risk. Ruby 2.7+. Thanks.
43
+ This library is under heavy development. Public API may be subject to change. The first major release is still to come. Use the current version at your own risk. Ruby 2.7+, JRuby 9.4+ (TruffleRuby support is planned as well). Thanks.
38
44
  <!-- features:end -->
39
45
  <!-- warning:end -->
40
46
 
41
47
  <!-- links:start -->
42
48
  ## Quick Links
43
49
 
44
- - Check out [Convenient Service Official User Docs](https://marian13.github.io/convenient_service_docs/) for installation, requirements, and usage guides.
50
+ - Visit the [All-in-One Presentation](https://marian13.github.io/static_content/convenient_service/presentations/all_in_one) to get a quick overview.
45
51
 
46
- - Read [the API docs](https://marian13.github.io/convenient_service) to get familiar with the newest functionality that are not documented yet.
52
+ - Check out [Convenient Service Official User Docs](https://marian13.github.io/convenient_service_docs) for installation, requirements, and usage guides.
53
+
54
+ - Read [the API docs](https://marian13.github.io/convenient_service) to get familiar with the newest functionality that is not documented yet.
47
55
 
48
56
  - Create [an issue](https://github.com/marian13/convenient_service/issues) if you are going to report a bug.
49
57
 
@@ -53,6 +61,8 @@ This library is under heavy development. Public API may be subject to change. Th
53
61
 
54
62
  - [RubyGems](https://rubygems.org/gems/convenient_service).
55
63
 
64
+ - [Static Content](https://github.com/marian13/static_content/tree/main/convenient_service) repo.
65
+
56
66
  - Have a look at [Convenient Service Development Wiki](https://github.com/marian13/convenient_service/wiki) for the contribution tutorials.
57
67
 
58
68
  <!-- links:end -->
data/ROADMAP.md CHANGED
@@ -76,6 +76,10 @@
76
76
  | Low | 🚧 | Generator to create a spec default structure | |
77
77
  | Low | 🚧 | Rubocop cop that complains when a service does NOT have its own suite of specs | |
78
78
  | High | 🚧 | Add specs for `WrappedMethod#call` | |
79
- | High | 🚧 | Check whether ignoring error was used properly | |
79
+ | High | 🚧 | Check whether ignoring the error was used properly | |
80
+ | High | 🚧 | Steps are great for `and` logic, but what to do with `or` logic? | Create the third service | |
81
+ | High | 🚧 | Steps are great for `and` logic, but what to do with `case when` logic? | Create the third service | |
82
+ | High | 🚧 | Cacing of services | It is relatively simple to add caching for steps, but not for all services, since steps are managed by framework | |
83
+ | High | 🚧 | Fallback should return result with already checked status | |
80
84
 
81
85
  Search for `TODO`s in the codebase for more tasks.