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
@@ -13,69 +13,160 @@ module ConvenientService
13
13
  module Dependencies
14
14
  class << self
15
15
  ##
16
+ # @api private
17
+ #
18
+ # @return [Boolean]
19
+ # @see ConvenientService.Dependencies.require_has_j_send_result_params_validations_using_active_model_validations
20
+ #
21
+ def support_has_j_send_result_params_validations_using_active_model_validations?
22
+ return false unless active_model.loaded?
23
+ return false if ruby.version >= 3.0 && active_model.version < 6.0
24
+
25
+ true
26
+ end
27
+
28
+ ##
29
+ # @api private
30
+ #
31
+ # @return [Boolean]
32
+ #
33
+ # @see https://github.com/ruby/logger/commit/74690b87b15244e19dd91cd06ae295251e1e5781
34
+ #
35
+ def support_logger_non_integer_levels?
36
+ logger.version >= "1.3.0"
37
+ end
38
+
39
+ ##
40
+ # @api public
41
+ #
42
+ # @return [Boolean]
43
+ # @note Expected to be called from app entry points like `initializers` in Rails.
44
+ #
45
+ def require_alias
46
+ require_relative "alias"
47
+ end
48
+
49
+ ##
50
+ # @api public
51
+ #
16
52
  # @return [Boolean]
17
53
  # @note Expected to be called from app entry points like `initializers` in Rails.
18
54
  #
19
55
  def require_assigns_attributes_in_constructor_using_active_model_attribute_assignment
56
+ ##
57
+ # - https://edgeguides.rubyonrails.org/active_model_basics.html
58
+ # - https://api.rubyonrails.org/classes/ActiveModel.html
59
+ # - https://github.com/rails/rails/tree/main/activemodel
60
+ #
20
61
  require "active_model"
21
62
 
22
63
  require_relative "common/plugins/assigns_attributes_in_constructor/using_active_model_attribute_assignment"
23
64
  end
24
65
 
25
66
  ##
67
+ # @api public
68
+ #
26
69
  # @return [Boolean]
27
70
  # @note Expected to be called from app entry points like `initializers` in Rails.
28
71
  #
29
72
  def require_assigns_attributes_in_constructor_using_dry_initializer
73
+ ##
74
+ # - https://dry-rb.org/gems/dry-initializer/main
75
+ # - https://github.com/dry-rb/dry-initializer
76
+ #
30
77
  require "dry-initializer"
31
78
 
32
79
  require_relative "common/plugins/assigns_attributes_in_constructor/using_dry_initializer"
33
80
  end
34
81
 
35
82
  ##
83
+ # @api public
84
+ #
85
+ # @return [Boolean]
86
+ # @note Expected to be called from app entry points like `initializers` in Rails.
87
+ #
88
+ def require_can_utilize_finite_loop
89
+ require_relative "common/plugins/can_utilize_finite_loop"
90
+ end
91
+
92
+ ##
93
+ # @api public
94
+ #
36
95
  # @return [Boolean]
37
96
  # @note Expected to be called from app entry points like `initializers` in Rails.
38
97
  #
39
98
  def require_has_attributes_using_active_model_attributes
99
+ ##
100
+ # - https://edgeguides.rubyonrails.org/active_model_basics.html
101
+ # - https://api.rubyonrails.org/classes/ActiveModel.html
102
+ # - https://github.com/rails/rails/tree/main/activemodel
103
+ #
40
104
  require "active_model"
41
105
 
42
106
  require_relative "common/plugins/has_attributes/using_active_model_attributes"
43
107
  end
44
108
 
45
109
  ##
110
+ # @api public
111
+ #
46
112
  # @return [Boolean]
47
- # @api private
113
+ # @note Expected to be called from app entry points like `initializers` in Rails.
48
114
  #
49
- def support_has_result_params_validations_using_active_model_validations?
50
- return false unless active_model.loaded?
51
- return false if ruby.version >= 3.0 && active_model.version < 6.0
115
+ def require_awesome_print_inspect
116
+ ##
117
+ # - https://github.com/awesome-print/awesome_print
118
+ #
119
+ require "awesome_print"
52
120
 
53
- true
121
+ require_relative "service/plugins/has_awesome_print_inspect"
122
+ require_relative "service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect"
123
+ require_relative "service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_awesome_print_inspect"
124
+ require_relative "service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_awesome_print_inspect"
125
+ require_relative "service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_awesome_print_inspect"
126
+ require_relative "service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_awesome_print_inspect"
127
+ require_relative "service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect"
128
+ require_relative "configs/awesome_print_inspect"
129
+ require_relative "configs/awesome_print_inspect/aliases"
54
130
  end
55
131
 
56
132
  ##
133
+ # @api public
134
+ #
57
135
  # @return [Boolean]
58
136
  # @note Expected to be called from app entry points like `initializers` in Rails.
59
137
  #
60
138
  # @see https://marian13.github.io/convenient_service_docs/troubleshooting/i18n_translate_wrong_number_of_arguments
61
139
  #
62
- def require_has_result_params_validations_using_active_model_validations
140
+ def require_has_j_send_result_params_validations_using_active_model_validations
141
+ ##
142
+ # - https://edgeguides.rubyonrails.org/active_model_basics.html
143
+ # - https://api.rubyonrails.org/classes/ActiveModel.html
144
+ # - https://github.com/rails/rails/tree/main/activemodel
145
+ #
63
146
  require "active_model"
64
147
 
65
- require_relative "service/plugins/has_result_params_validations/using_active_model_validations"
148
+ require_relative "service/plugins/has_j_send_result_params_validations/using_active_model_validations"
66
149
  end
67
150
 
68
151
  ##
152
+ # @api public
153
+ #
69
154
  # @return [Boolean]
70
155
  # @note Expected to be called from app entry points like `initializers` in Rails.
71
156
  #
72
- def require_has_result_params_validations_using_dry_validation
157
+ def require_has_j_send_result_params_validations_using_dry_validation
158
+ ##
159
+ # - https://dry-rb.org/gems/dry-validation/main/
160
+ # - https://github.com/dry-rb/dry-validation
161
+ #
73
162
  require "dry-validation"
74
163
 
75
- require_relative "service/plugins/has_result_params_validations/using_dry_validation"
164
+ require_relative "service/plugins/has_j_send_result_params_validations/using_dry_validation"
76
165
  end
77
166
 
78
167
  ##
168
+ # @api public
169
+ #
79
170
  # @return [Boolean]
80
171
  # @note Expected to be called from app entry points like `initializers` in Rails.
81
172
  #
@@ -84,115 +175,263 @@ module ConvenientService
84
175
  end
85
176
 
86
177
  ##
178
+ # @api public
179
+ #
180
+ # @return [Boolean]
181
+ # @note Expected to be called from app entry points like `initializers` in Rails.
182
+ #
183
+ def require_cleans_exception_backtrace
184
+ require_relative "dependencies/extractions/active_support_backtrace_cleaner"
185
+ end
186
+
187
+ ##
188
+ # @api private
189
+ #
87
190
  # @return [Boolean]
88
191
  # @note Expected to be called from `irb`, `pry`, `spec_helper.rb`, etc.
89
192
  #
193
+ # @internal
194
+ # NOTE: `byebug` has C extensions, that is why it is NOT supported in JRuby.
195
+ # - https://github.com/deivid-rodriguez/byebug/tree/master/ext/byebug
196
+ # - https://github.com/deivid-rodriguez/byebug/issues/179#issuecomment-152727003
197
+ #
90
198
  def require_development_tools
199
+ ##
200
+ # - https://github.com/awesome-print/awesome_print
201
+ #
91
202
  require "awesome_print"
92
- require "byebug"
203
+
204
+ ##
205
+ # - https://github.com/gsamokovarov/break
206
+ #
207
+ require "break"
208
+
209
+ ##
210
+ # - https://github.com/deivid-rodriguez/byebug
211
+ #
212
+ require "byebug" unless ruby.jruby?
213
+
214
+ ##
215
+ # - https://github.com/ruby/debug
216
+ #
217
+ require "debug" unless ruby.jruby?
218
+
219
+ ##
220
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/ostruct/rdoc/OpenStruct.html
221
+ # - https://github.com/ruby/ostruct
222
+ #
223
+ require "ostruct"
224
+
225
+ ##
226
+ # - https://github.com/janlelis/paint
227
+ #
93
228
  require "paint"
229
+
230
+ ##
231
+ # - https://github.com/rouge-ruby/rouge
232
+ #
94
233
  require "rouge"
234
+
235
+ ##
236
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/tempfile/rdoc/Tempfile.html
237
+ # - https://github.com/ruby/tempfile
238
+ #
95
239
  require "tempfile"
96
240
 
97
- require_relative "dependencies/extractions/byebug_syntax_highlighting"
98
- require_relative "dependencies/extractions/b"
241
+ ##
242
+ # - https://gist.github.com/marian13/5dade20a431d7254db30e543167058ce
243
+ #
244
+ require_relative "dependencies/extractions/byebug_syntax_highlighting" unless ruby.jruby?
245
+
246
+ require_relative "dependencies/extractions/b" unless ruby.jruby?
99
247
  end
100
248
 
101
249
  ##
102
- # Loads RSpec extensions like `be_success` matcher, `stub_service` helper, etc.
250
+ # @api private
103
251
  #
104
252
  # @return [Boolean]
105
253
  # @note Expected to be called from `spec_helper.rb`.
106
254
  #
107
- def require_rspec_extentions
108
- require "rspec/expectations"
109
- require "rspec/matchers"
110
- require "rspec/mocks"
255
+ def require_test_tools
256
+ ##
257
+ # - https://github.com/faker-ruby/faker
258
+ #
259
+ require "faker"
111
260
 
112
- require "tempfile"
261
+ ##
262
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/ostruct/rdoc/OpenStruct.html
263
+ # - https://github.com/ruby/ostruct
264
+ #
265
+ require "ostruct"
113
266
 
114
- require_relative "rspec"
267
+ ##
268
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/tempfile/rdoc/Tempfile.html
269
+ # - https://github.com/ruby/tempfile
270
+ #
271
+ require "tempfile"
115
272
  end
116
273
 
117
274
  ##
118
- # Loads test factory.
275
+ # @api public
276
+ #
277
+ # Loads RSpec extensions like `be_success` matcher, `stub_service` helper, etc.
119
278
  #
120
279
  # @return [Boolean]
121
280
  # @note Expected to be called from `spec_helper.rb`.
122
281
  #
123
- def require_factory
124
- require "faker"
282
+ def require_rspec_extentions
283
+ require "rspec/expectations"
284
+ require "rspec/matchers"
285
+ require "rspec/mocks"
125
286
 
126
- require_relative "factory"
287
+ require_relative "rspec"
127
288
  end
128
289
 
129
290
  ##
291
+ # @api private
292
+ #
130
293
  # Loads standard config examples.
131
294
  #
132
295
  # @return [Boolean]
133
- # @api private
134
296
  #
135
297
  def require_standard_examples
298
+ ##
299
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/date/rdoc/Date.html
300
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/date/rdoc/DateTime.html
301
+ # - https://github.com/ruby/date
302
+ #
303
+ require "date"
304
+
305
+ ##
306
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/json/rdoc/JSON.html
307
+ # - https://github.com/flori/json
308
+ #
136
309
  require "json"
310
+
311
+ ##
312
+ # - https://github.com/jfelchner/ruby-progressbar
313
+ #
137
314
  require "progressbar"
315
+
316
+ ##
317
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/webrick/rdoc/WEBrick.html
318
+ # - https://github.com/ruby/webrick
319
+ #
138
320
  require "webrick"
139
321
 
322
+ ##
323
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/uri/rdoc/URI.html
324
+ # - https://github.com/ruby/uri
325
+ #
326
+ require "uri"
327
+
140
328
  require_relative "examples/standard/cowsay"
141
- require_relative "examples/standard/request_params"
329
+ require_relative "examples/standard/date_time"
330
+ require_relative "examples/standard/factorial"
142
331
  require_relative "examples/standard/gemfile"
332
+ require_relative "examples/standard/request_params"
143
333
  end
144
334
 
145
335
  ##
336
+ # @api private
337
+ #
146
338
  # Loads rails config examples.
147
339
  #
148
340
  # @return [Boolean]
149
- # @api private
150
341
  #
151
342
  def require_rails_examples
343
+ ##
344
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/json/rdoc/JSON.html
345
+ # - https://github.com/flori/json
346
+ #
152
347
  require "json"
348
+
349
+ ##
350
+ # - https://github.com/jfelchner/ruby-progressbar
351
+ #
153
352
  require "progressbar"
353
+
354
+ ##
355
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/webrick/rdoc/WEBrick.html
356
+ # - https://github.com/ruby/webrick
357
+ #
154
358
  require "webrick"
155
359
 
156
360
  require_relative "examples/rails/gemfile"
157
361
  end
158
362
 
159
363
  ##
364
+ # @api private
365
+ #
160
366
  # Loads dry config examples.
161
367
  #
162
368
  # @return [Boolean]
163
- # @api private
164
369
  #
165
370
  def require_dry_examples
371
+ ##
372
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/json/rdoc/JSON.html
373
+ # - https://github.com/flori/json
374
+ #
166
375
  require "json"
376
+
377
+ ##
378
+ # - https://github.com/jfelchner/ruby-progressbar
379
+ #
167
380
  require "progressbar"
381
+
382
+ ##
383
+ # - https://ruby-doc.org/stdlib-2.7.0/libdoc/webrick/rdoc/WEBrick.html
384
+ # - https://github.com/ruby/webrick
385
+ #
168
386
  require "webrick"
169
387
 
170
388
  require_relative "examples/dry/gemfile"
171
389
  end
172
390
 
173
391
  ##
174
- # @return [ConvenientService::Support::Ruby]
175
392
  # @api private
176
393
  #
394
+ # @return [ConvenientService::Support::Ruby]
395
+ #
177
396
  def ruby
178
397
  Support::Ruby
179
398
  end
180
399
 
181
400
  ##
182
- # @return [ConvenientService::Support::RSpec]
183
401
  # @api private
184
402
  #
403
+ # @return [ConvenientService::Support::RSpec]
404
+ #
185
405
  def rspec
186
406
  Support::Gems::RSpec
187
407
  end
188
408
 
189
409
  ##
190
- # @return [ConvenientService::Support::Gems::ActiveModel]
191
410
  # @api private
192
411
  #
412
+ # @return [ConvenientService::Support::Gems::ActiveModel]
413
+ #
193
414
  def active_model
194
415
  Support::Gems::ActiveModel
195
416
  end
417
+
418
+ ##
419
+ # @api private
420
+ #
421
+ # @return [ConvenientService::Support::Gems::Logger]
422
+ #
423
+ def logger
424
+ Support::Gems::Logger
425
+ end
426
+
427
+ ##
428
+ # @api private
429
+ #
430
+ # @return [ConvenientService::Support::Gems::Paint]
431
+ #
432
+ def paint
433
+ Support::Gems::Paint
434
+ end
196
435
  end
197
436
  end
198
437
  end
@@ -9,34 +9,32 @@
9
9
  module ConvenientService
10
10
  module Examples
11
11
  module Dry
12
- module Gemfile
12
+ class Gemfile
13
13
  class DryService
14
14
  module Config
15
15
  include Support::Concern
16
16
 
17
- included do |service_class|
18
- service_class.class_exec do
19
- include ConvenientService::Standard::Config
17
+ included do
18
+ include ConvenientService::Standard::Config
20
19
 
21
- ##
22
- # NOTE: `AssignsAttributesInConstructor::UsingDryInitializer` plugin.
23
- #
24
- concerns do
25
- use ConvenientService::Plugins::Common::AssignsAttributesInConstructor::UsingDryInitializer::Concern
26
- end
20
+ ##
21
+ # NOTE: `AssignsAttributesInConstructor::UsingDryInitializer` plugin.
22
+ #
23
+ concerns do
24
+ use ConvenientService::Plugins::Common::AssignsAttributesInConstructor::UsingDryInitializer::Concern
25
+ end
27
26
 
28
- ##
29
- # NOTE: `HasResultParamsValidations::UsingDryValidation` plugin.
30
- #
31
- concerns do
32
- use ConvenientService::Plugins::Service::HasResultParamsValidations::UsingDryValidation::Concern
33
- end
27
+ ##
28
+ # NOTE: `HasJSendResultParamsValidations::UsingDryValidation` plugin.
29
+ #
30
+ concerns do
31
+ use ConvenientService::Plugins::Service::HasJSendResultParamsValidations::UsingDryValidation::Concern
32
+ end
34
33
 
35
- middlewares :result do
36
- insert_before \
37
- ConvenientService::Plugins::Service::HasResult::Middleware,
38
- ConvenientService::Plugins::Service::HasResultParamsValidations::UsingDryValidation::Middleware
39
- end
34
+ middlewares :result do
35
+ insert_before \
36
+ ConvenientService::Plugins::Service::RaisesOnNotResultReturnValue::Middleware,
37
+ ConvenientService::Plugins::Service::HasJSendResultParamsValidations::UsingDryValidation::Middleware
40
38
  end
41
39
  end
42
40
  end
@@ -3,7 +3,7 @@
3
3
  module ConvenientService
4
4
  module Examples
5
5
  module Dry
6
- module Gemfile
6
+ class Gemfile
7
7
  module Services
8
8
  class AssertFileExists
9
9
  include DryService::Config
@@ -3,7 +3,7 @@
3
3
  module ConvenientService
4
4
  module Examples
5
5
  module Dry
6
- module Gemfile
6
+ class Gemfile
7
7
  module Services
8
8
  class AssertFileNotEmpty
9
9
  include DryService::Config
@@ -8,7 +8,7 @@
8
8
  module ConvenientService
9
9
  module Examples
10
10
  module Dry
11
- module Gemfile
11
+ class Gemfile
12
12
  module Services
13
13
  class AssertNodeAvailable
14
14
  include DryService::Config
@@ -17,7 +17,7 @@ module ConvenientService
17
17
  # NOTE: `> /dev/null 2>&1` is used to hide output.
18
18
  # https://unix.stackexchange.com/a/119650/394253
19
19
  #
20
- step Services::RunShell, in: {command: -> { "which node > /dev/null 2>&1" }}
20
+ step Services::RunShellCommand, in: {command: -> { "which node > /dev/null 2>&1" }}
21
21
  end
22
22
  end
23
23
  end
@@ -8,7 +8,7 @@
8
8
  module ConvenientService
9
9
  module Examples
10
10
  module Dry
11
- module Gemfile
11
+ class Gemfile
12
12
  module Services
13
13
  class AssertNpmPackageAvailable
14
14
  include DryService::Config
@@ -30,7 +30,7 @@ module ConvenientService
30
30
  # NOTE: For `npm list` and its options docs, see
31
31
  # https://docs.npmjs.com/cli/v7/commands/npm-ls
32
32
  #
33
- step Services::RunShell, in: {command: -> { "npm list #{name} --depth=0 > /dev/null 2>&1" }}
33
+ step Services::RunShellCommand, in: {command: -> { "npm list #{name} --depth=0 > /dev/null 2>&1" }}
34
34
  end
35
35
  end
36
36
  end
@@ -3,7 +3,7 @@
3
3
  module ConvenientService
4
4
  module Examples
5
5
  module Dry
6
- module Gemfile
6
+ class Gemfile
7
7
  module Services
8
8
  class AssertValidRubySyntax
9
9
  include DryService::Config
@@ -21,7 +21,7 @@ module ConvenientService
21
21
  # NOTE: `> /dev/null 2>&1` is used to hide output.
22
22
  # https://unix.stackexchange.com/a/119650/394253
23
23
  #
24
- check_ruby_syntax_result = Services::RunShell.result(command: "ruby -c #{file.path} > /dev/null 2>&1")
24
+ check_ruby_syntax_result = Services::RunShellCommand.result(command: "ruby -c #{file.path} > /dev/null 2>&1")
25
25
 
26
26
  return error("`#{content}` contains invalid Ruby syntax") unless check_ruby_syntax_result.success?
27
27
 
@@ -9,7 +9,7 @@
9
9
  module ConvenientService
10
10
  module Examples
11
11
  module Dry
12
- module Gemfile
12
+ class Gemfile
13
13
  module Services
14
14
  class Format
15
15
  include DryService::Config
@@ -43,7 +43,7 @@
43
43
  module ConvenientService
44
44
  module Examples
45
45
  module Dry
46
- module Gemfile
46
+ class Gemfile
47
47
  module Services
48
48
  class FormatBody
49
49
  include DryService::Config
@@ -31,7 +31,7 @@
31
31
  module ConvenientService
32
32
  module Examples
33
33
  module Dry
34
- module Gemfile
34
+ class Gemfile
35
35
  module Services
36
36
  class FormatGemsWithEnvs
37
37
  BLOCK_END = "end"
@@ -35,7 +35,7 @@
35
35
  module ConvenientService
36
36
  module Examples
37
37
  module Dry
38
- module Gemfile
38
+ class Gemfile
39
39
  module Services
40
40
  class FormatGemsWithoutEnvs
41
41
  EMPTY_LINE = ""
@@ -23,7 +23,7 @@
23
23
  module ConvenientService
24
24
  module Examples
25
25
  module Dry
26
- module Gemfile
26
+ class Gemfile
27
27
  module Services
28
28
  class FormatHeader
29
29
  FROZEN_STRING_LITERAL = "# frozen_string_literal: true"
@@ -27,7 +27,7 @@
27
27
  module ConvenientService
28
28
  module Examples
29
29
  module Dry
30
- module Gemfile
30
+ class Gemfile
31
31
  module Services
32
32
  class ParseContent
33
33
  RUBY_REGEX = /\A\s*ruby/
@@ -8,25 +8,32 @@
8
8
  module ConvenientService
9
9
  module Examples
10
10
  module Dry
11
- module Gemfile
11
+ class Gemfile
12
12
  module Services
13
13
  class PrintShellCommand
14
14
  include DryService::Config
15
15
 
16
- option :text
16
+ option :command
17
+ option :skip, default: -> { false }
17
18
  option :out, default: -> { $stdout }
18
19
 
19
20
  contract do
20
21
  schema do
21
- required(:text).filled(:string)
22
+ required(:command).filled(:string)
22
23
  end
23
24
  end
24
25
 
25
26
  def result
27
+ return error("Printing of shell command `#{command}` is skipped") if skip
28
+
26
29
  out.puts
27
30
 
28
- out.puts ::Paint["$ #{text}", :blue, :bold]
31
+ out.puts ::Paint["$ #{command}", :blue, :bold]
32
+
33
+ success
34
+ end
29
35
 
36
+ def fallback_result
30
37
  success
31
38
  end
32
39
  end