convenient_service 0.17.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (492) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -7
  3. data/lib/convenient_service/commands/is_service.rb +28 -0
  4. data/lib/convenient_service/commands/is_service_class.rb +30 -0
  5. data/lib/convenient_service/commands.rb +4 -0
  6. data/lib/convenient_service/common/plugins/ensures_negated_j_send_result/middleware.rb +22 -0
  7. data/lib/convenient_service/common/plugins/ensures_negated_j_send_result.rb +3 -0
  8. data/lib/convenient_service/common/plugins/has_around_callbacks/concern.rb +8 -1
  9. data/lib/convenient_service/common/plugins/has_around_callbacks/middleware.rb +28 -7
  10. data/lib/convenient_service/common/plugins/has_callbacks/concern.rb +19 -9
  11. data/lib/convenient_service/common/plugins/has_callbacks/entities/callback_collection.rb +49 -1
  12. data/lib/convenient_service/common/plugins/has_callbacks/middleware.rb +21 -3
  13. data/lib/convenient_service/common/plugins/has_callbacks.rb +0 -1
  14. data/lib/convenient_service/common/plugins/has_instance_proxy/entities/instance_proxy.rb +1 -1
  15. data/lib/convenient_service/common/plugins/has_internals/entities/internals/plugins/has_cache/concern.rb +12 -0
  16. data/lib/convenient_service/common/plugins.rb +3 -3
  17. data/lib/convenient_service/core/concern/class_methods.rb +3 -0
  18. data/lib/convenient_service/core/entities/config/entities/concerns/entities/stack.rb +22 -0
  19. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/container/concern/instance_methods.rb +1 -1
  20. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middleware_creators/observable/entities/event.rb +13 -15
  21. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/commands/normalize_env.rb +55 -0
  22. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/commands.rb +1 -0
  23. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/chain/concern/instance_methods.rb +3 -3
  24. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/middlewares/classic.rb +14 -0
  25. data/lib/convenient_service/core/entities/config/entities/method_middlewares/entities/stack.rb +22 -0
  26. data/lib/convenient_service/core/entities/config/exceptions.rb +2 -0
  27. data/lib/convenient_service/core/entities/config.rb +3 -0
  28. data/lib/convenient_service/dependencies/built_in.rb +0 -7
  29. data/lib/convenient_service/dependencies/extractions/ds.rb +45 -0
  30. data/lib/convenient_service/dependencies/only_queries.rb +29 -0
  31. data/lib/convenient_service/dependencies/queries/gems/active_model.rb +38 -0
  32. data/lib/convenient_service/dependencies/queries/gems/logger.rb +39 -0
  33. data/lib/convenient_service/dependencies/queries/gems/paint.rb +39 -0
  34. data/lib/convenient_service/dependencies/queries/gems/rspec.rb +60 -0
  35. data/lib/convenient_service/dependencies/queries/ruby.rb +103 -0
  36. data/lib/convenient_service/dependencies/queries/version/null_version.rb +87 -0
  37. data/lib/convenient_service/dependencies/queries/version.rb +87 -0
  38. data/lib/convenient_service/dependencies/queries.rb +536 -0
  39. data/lib/convenient_service/dependencies.rb +2 -430
  40. data/lib/convenient_service/feature/configs/standard.rb +0 -2
  41. data/lib/convenient_service/logger.rb +9 -1
  42. data/lib/convenient_service/rspec/matchers/classes/call_chain_next.rb +41 -0
  43. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/commands/generate_printable_method.rb +46 -0
  44. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/delegation.rb +89 -0
  45. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/inputs.rb +223 -0
  46. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/outputs.rb +38 -0
  47. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matcher_collection.rb +157 -0
  48. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/arguments/commands/apply_stub_to_track_delegations.rb +77 -0
  49. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/arguments/commands/generate_printable_arguments.rb +94 -0
  50. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/arguments.rb +89 -0
  51. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/base.rb +99 -0
  52. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/return_custom_value.rb +91 -0
  53. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/return_delegation_value.rb +129 -0
  54. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/with_any_arguments.rb +31 -0
  55. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/with_concrete_arguments.rb +31 -0
  56. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers/without_arguments.rb +31 -0
  57. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/sub_matchers.rb +11 -0
  58. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities.rb +5 -1
  59. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/exceptions.rb +65 -0
  60. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to.rb +163 -41
  61. data/lib/convenient_service/service/configs/amazing_print_inspect/aliases.rb +7 -0
  62. data/lib/convenient_service/service/configs/amazing_print_inspect.rb +61 -0
  63. data/lib/convenient_service/service/configs/awesome_print_inspect.rb +1 -1
  64. data/lib/convenient_service/service/configs/{minimal.rb → essential.rb} +40 -93
  65. data/lib/convenient_service/service/configs/standard/v1.rb +47 -34
  66. data/lib/convenient_service/service/configs/standard.rb +70 -68
  67. data/lib/convenient_service/service/configs.rb +1 -1
  68. data/lib/convenient_service/service/plugins/can_have_connected_steps/concern.rb +503 -0
  69. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/and.rb +136 -0
  70. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb +126 -0
  71. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/empty.rb +104 -0
  72. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/group.rb +118 -0
  73. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/not.rb +118 -0
  74. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/or.rb +145 -0
  75. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/scalar.rb +133 -0
  76. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions.rb +10 -0
  77. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities/step_collection.rb +224 -0
  78. data/lib/convenient_service/service/plugins/can_have_connected_steps/entities.rb +4 -0
  79. data/lib/convenient_service/service/plugins/can_have_connected_steps/exceptions.rb +95 -0
  80. data/lib/convenient_service/service/plugins/can_have_connected_steps/middleware.rb +30 -0
  81. data/lib/convenient_service/service/plugins/can_have_connected_steps.rb +6 -0
  82. data/lib/convenient_service/service/plugins/can_have_fallbacks/concern.rb +18 -0
  83. data/lib/convenient_service/service/plugins/can_have_fallbacks/exceptions.rb +22 -4
  84. data/lib/convenient_service/service/plugins/can_have_fallbacks/middleware.rb +3 -3
  85. data/lib/convenient_service/service/plugins/can_have_rollbacks/middleware.rb +66 -0
  86. data/lib/convenient_service/service/plugins/can_have_rollbacks.rb +3 -0
  87. data/lib/convenient_service/service/plugins/can_have_sequential_steps/concern.rb +76 -0
  88. data/lib/convenient_service/service/plugins/{can_have_steps → can_have_sequential_steps}/entities/step_collection.rb +61 -10
  89. data/lib/convenient_service/service/plugins/can_have_sequential_steps/entities.rb +3 -0
  90. data/lib/convenient_service/service/plugins/{can_have_steps → can_have_sequential_steps}/middleware.rb +7 -3
  91. data/lib/convenient_service/service/plugins/can_have_sequential_steps.rb +5 -0
  92. data/lib/convenient_service/service/plugins/can_have_steps/commands/is_step.rb +34 -0
  93. data/lib/convenient_service/service/plugins/can_have_steps/commands.rb +1 -0
  94. data/lib/convenient_service/service/plugins/can_have_steps/concern.rb +4 -57
  95. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/commands/define_method_in_container.rb +45 -26
  96. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/reassignment.rb +0 -2
  97. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/exceptions.rb +4 -24
  98. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/concern/instance_methods.rb +166 -83
  99. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/exceptions.rb +19 -0
  100. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/{can_be_result_step → can_be_method_step}/can_be_executed/exceptions.rb +1 -1
  101. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_executed/middleware.rb +52 -6
  102. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/can_be_executed.rb +1 -0
  103. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_method_step/concern.rb +7 -0
  104. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_alternative_steps.rb +3 -0
  105. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallbacks/concern.rb +0 -46
  106. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallbacks/exceptions.rb +53 -0
  107. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallbacks/middleware.rb +75 -6
  108. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallbacks.rb +1 -0
  109. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_parent_result/middleware.rb +13 -1
  110. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_amazing_print_inspect/concern.rb +46 -0
  111. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_amazing_print_inspect.rb +3 -0
  112. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect/concern.rb +3 -2
  113. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_result/concern.rb +34 -0
  114. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_result/middleware.rb +58 -0
  115. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_result.rb +4 -0
  116. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins.rb +2 -1
  117. data/lib/convenient_service/service/plugins/can_have_steps/entities.rb +0 -1
  118. data/lib/convenient_service/service/plugins/can_have_steps.rb +41 -1
  119. data/lib/convenient_service/service/plugins/can_have_stubbed_results/commands/fetch_all_services_stubbed_results_cache.rb +2 -2
  120. data/lib/convenient_service/service/plugins/forbids_convenient_service_entities_as_constructor_arguments/exceptions.rb +53 -0
  121. data/lib/convenient_service/service/plugins/forbids_convenient_service_entities_as_constructor_arguments/middleware.rb +108 -0
  122. data/lib/convenient_service/service/plugins/forbids_convenient_service_entities_as_constructor_arguments.rb +4 -0
  123. data/lib/convenient_service/service/plugins/has_amazing_print_inspect/concern.rb +39 -0
  124. data/lib/convenient_service/service/plugins/has_amazing_print_inspect.rb +3 -0
  125. data/lib/convenient_service/service/plugins/{can_have_steps/entities/step/plugins/can_be_result_step → has_j_send_result/entities/result/plugins/can_be_from_exception}/concern.rb +7 -5
  126. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_be_from_exception.rb +3 -0
  127. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status/concern.rb +2 -2
  128. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status.rb +0 -1
  129. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_step/concern.rb +7 -0
  130. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_amazing_print_inspect/concern.rb +41 -0
  131. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_amazing_print_inspect.rb +3 -0
  132. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect/concern.rb +2 -2
  133. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/concern/instance_methods.rb +0 -7
  134. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_amazing_print_inspect/concern.rb +46 -0
  135. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_amazing_print_inspect.rb +3 -0
  136. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_amazing_print_inspect/concern.rb +46 -0
  137. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_amazing_print_inspect.rb +3 -0
  138. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_amazing_print_inspect/concern.rb +46 -0
  139. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_amazing_print_inspect.rb +3 -0
  140. 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 +45 -17
  141. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/can_be_checked/concern.rb +38 -0
  142. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/can_be_checked/middleware.rb +51 -0
  143. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/can_be_checked.rb +4 -0
  144. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_amazing_print_inspect/concern.rb +46 -0
  145. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_amazing_print_inspect.rb +3 -0
  146. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins.rb +1 -0
  147. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/exceptions.rb +15 -0
  148. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_negated_result/concern.rb +72 -0
  149. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_negated_result.rb +3 -0
  150. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/helps_to_learn_similarities_with_common_objects/concern/instance_methods.rb +161 -0
  151. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/helps_to_learn_similarities_with_common_objects/concern.rb +27 -0
  152. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/helps_to_learn_similarities_with_common_objects/exceptions.rb +34 -0
  153. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/helps_to_learn_similarities_with_common_objects.rb +4 -0
  154. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/raises_on_not_checked_result_status/middleware.rb +1 -1
  155. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins.rb +3 -0
  156. data/lib/convenient_service/service/plugins/has_j_send_result.rb +0 -1
  157. data/lib/convenient_service/service/plugins/has_j_send_result_params_validations/using_dry_validation/middleware.rb +4 -0
  158. data/lib/convenient_service/service/plugins/has_mermaid_flowchart/concern.rb +6 -1
  159. data/lib/convenient_service/service/plugins/has_negated_j_send_result/concern.rb +23 -0
  160. data/lib/convenient_service/service/plugins/has_negated_j_send_result.rb +3 -0
  161. data/lib/convenient_service/service/plugins/has_negated_result/concern.rb +33 -0
  162. data/lib/convenient_service/service/plugins/{has_j_send_result → has_negated_result}/exceptions.rb +3 -3
  163. data/lib/convenient_service/service/plugins/has_negated_result.rb +4 -0
  164. data/lib/convenient_service/service/plugins/rescues_result_unhandled_exceptions/middleware.rb +1 -0
  165. data/lib/convenient_service/service/plugins/{wraps_result_in_db_transaction → wraps_result_in_d_b_transaction}/middleware.rb +1 -1
  166. data/lib/convenient_service/service/plugins.rb +10 -3
  167. data/lib/convenient_service/specification.rb +28 -0
  168. data/lib/convenient_service/support/backtrace_cleaner.rb +6 -1
  169. data/lib/convenient_service/support/cache/entities/caches/base.rb +3 -0
  170. data/lib/convenient_service/support/counter.rb +2 -0
  171. data/lib/convenient_service/support/method_parameters.rb +121 -0
  172. data/lib/convenient_service/support/middleware/stack_builder.rb +37 -0
  173. data/lib/convenient_service/support/never_reach_here.rb +21 -0
  174. data/lib/convenient_service/support/thread_safe_counter.rb +1 -0
  175. data/lib/convenient_service/support/unique_value.rb +3 -0
  176. data/lib/convenient_service/support/value.rb +78 -0
  177. data/lib/convenient_service/support.rb +3 -3
  178. data/lib/convenient_service/utils/array/find_last.rb +8 -3
  179. data/lib/convenient_service/utils/object/get_own_method.rb +54 -0
  180. data/lib/convenient_service/utils/object/instance_variable_delete.rb +1 -1
  181. data/lib/convenient_service/utils/object/safe_send.rb +84 -0
  182. data/lib/convenient_service/utils/object.rb +24 -0
  183. data/lib/convenient_service/utils/string/enclose.rb +52 -0
  184. data/lib/convenient_service/utils/string.rb +5 -0
  185. data/lib/convenient_service/version.rb +1 -1
  186. data/lib/convenient_service.rb +85 -0
  187. metadata +256 -322
  188. data/.dev/.tmuxinator.yml +0 -22
  189. data/.dockerignore +0 -1
  190. data/.gem_release.yml +0 -11
  191. data/.github/contributing.md +0 -15
  192. data/.github/issue_template.md +0 -35
  193. data/.github/pull_request_template.md +0 -31
  194. data/.github/workflows/cd.yml +0 -68
  195. data/.github/workflows/ci.yml +0 -212
  196. data/.gitignore +0 -66
  197. data/.inch.yml +0 -7
  198. data/.rspec +0 -3
  199. data/.rubocop.yml +0 -45
  200. data/.rubocop_rspec.yml +0 -58
  201. data/.ruby-version +0 -1
  202. data/.tool-versions +0 -1
  203. data/.vscode/CacheItsValue.code-snippets +0 -15
  204. data/.vscode/DelegateTo.code-snippets +0 -15
  205. data/.vscode/cache_its_value.code-snippets +0 -17
  206. data/.vscode/comparison.code-snippets +0 -41
  207. data/.vscode/delegate_to.code-snippets +0 -20
  208. data/.yardopts +0 -16
  209. data/Appraisals +0 -146
  210. data/CHANGELOG.md +0 -504
  211. data/Gemfile +0 -17
  212. data/ROADMAP.md +0 -92
  213. data/Rakefile +0 -54
  214. data/Taskfile.yml +0 -679
  215. data/benchmark/commit_config/ips.rb +0 -18
  216. data/benchmark/commit_config/profile.rb +0 -30
  217. data/benchmark/empty_service/ips.rb +0 -123
  218. data/benchmark/has_committed_config/ips.rb +0 -78
  219. data/benchmark/has_committed_config/profile.rb +0 -30
  220. data/convenient_service.gemspec +0 -233
  221. data/coverage/.gitkeep +0 -0
  222. data/docker/2.7/Dockerfile +0 -73
  223. data/docker/3.0/Dockerfile +0 -73
  224. data/docker/3.1/Dockerfile +0 -73
  225. data/docker/3.2/Dockerfile +0 -73
  226. data/docker/jruby-9.4/Dockerfile +0 -88
  227. data/docker/truffleruby-22.3/Dockerfile +0 -91
  228. data/docs/.gitkeep +0 -0
  229. data/docs/api/.gitkeep +0 -0
  230. data/env.rb +0 -23
  231. data/gemfiles/.gitkeep +0 -0
  232. data/lib/convenient_service/common/plugins/has_callbacks/container.rb +0 -17
  233. data/lib/convenient_service/common/plugins/normalizes_env/middleware.rb +0 -31
  234. data/lib/convenient_service/common/plugins/normalizes_env.rb +0 -3
  235. data/lib/convenient_service/examples/dry/gemfile/dry_service/config.rb +0 -45
  236. data/lib/convenient_service/examples/dry/gemfile/dry_service.rb +0 -3
  237. data/lib/convenient_service/examples/dry/gemfile/services/assert_file_exists.rb +0 -29
  238. data/lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb +0 -29
  239. data/lib/convenient_service/examples/dry/gemfile/services/assert_node_available.rb +0 -26
  240. data/lib/convenient_service/examples/dry/gemfile/services/assert_npm_package_available.rb +0 -39
  241. data/lib/convenient_service/examples/dry/gemfile/services/assert_valid_ruby_syntax.rb +0 -41
  242. data/lib/convenient_service/examples/dry/gemfile/services/format.rb +0 -37
  243. data/lib/convenient_service/examples/dry/gemfile/services/format_body.rb +0 -93
  244. data/lib/convenient_service/examples/dry/gemfile/services/format_gems_with_envs.rb +0 -96
  245. data/lib/convenient_service/examples/dry/gemfile/services/format_gems_without_envs.rb +0 -84
  246. data/lib/convenient_service/examples/dry/gemfile/services/format_header.rb +0 -74
  247. data/lib/convenient_service/examples/dry/gemfile/services/parse_content.rb +0 -93
  248. data/lib/convenient_service/examples/dry/gemfile/services/print_shell_command.rb +0 -44
  249. data/lib/convenient_service/examples/dry/gemfile/services/read_file_content.rb +0 -31
  250. data/lib/convenient_service/examples/dry/gemfile/services/run_shell_command.rb +0 -45
  251. data/lib/convenient_service/examples/dry/gemfile/services/strip_comments.rb +0 -109
  252. data/lib/convenient_service/examples/dry/gemfile/services.rb +0 -18
  253. data/lib/convenient_service/examples/dry/gemfile.rb +0 -27
  254. data/lib/convenient_service/examples/dry/v1/gemfile/dry_service/config.rb +0 -47
  255. data/lib/convenient_service/examples/dry/v1/gemfile/dry_service.rb +0 -3
  256. data/lib/convenient_service/examples/dry/v1/gemfile/services/assert_file_exists.rb +0 -31
  257. data/lib/convenient_service/examples/dry/v1/gemfile/services/assert_file_not_empty.rb +0 -31
  258. data/lib/convenient_service/examples/dry/v1/gemfile/services/assert_node_available.rb +0 -28
  259. data/lib/convenient_service/examples/dry/v1/gemfile/services/assert_npm_package_available.rb +0 -41
  260. data/lib/convenient_service/examples/dry/v1/gemfile/services/assert_valid_ruby_syntax.rb +0 -43
  261. data/lib/convenient_service/examples/dry/v1/gemfile/services/format.rb +0 -39
  262. data/lib/convenient_service/examples/dry/v1/gemfile/services/format_body.rb +0 -95
  263. data/lib/convenient_service/examples/dry/v1/gemfile/services/format_gems_with_envs.rb +0 -98
  264. data/lib/convenient_service/examples/dry/v1/gemfile/services/format_gems_without_envs.rb +0 -86
  265. data/lib/convenient_service/examples/dry/v1/gemfile/services/format_header.rb +0 -76
  266. data/lib/convenient_service/examples/dry/v1/gemfile/services/parse_content.rb +0 -95
  267. data/lib/convenient_service/examples/dry/v1/gemfile/services/read_file_content.rb +0 -33
  268. data/lib/convenient_service/examples/dry/v1/gemfile/services/run_shell_command.rb +0 -43
  269. data/lib/convenient_service/examples/dry/v1/gemfile/services/strip_comments.rb +0 -111
  270. data/lib/convenient_service/examples/dry/v1/gemfile/services.rb +0 -17
  271. data/lib/convenient_service/examples/dry/v1/gemfile.rb +0 -29
  272. data/lib/convenient_service/examples/rails/gemfile/rails_service/config.rb +0 -56
  273. data/lib/convenient_service/examples/rails/gemfile/rails_service.rb +0 -3
  274. data/lib/convenient_service/examples/rails/gemfile/services/assert_file_exists.rb +0 -25
  275. data/lib/convenient_service/examples/rails/gemfile/services/assert_file_not_empty.rb +0 -25
  276. data/lib/convenient_service/examples/rails/gemfile/services/assert_node_available.rb +0 -26
  277. data/lib/convenient_service/examples/rails/gemfile/services/assert_npm_package_available.rb +0 -35
  278. data/lib/convenient_service/examples/rails/gemfile/services/assert_valid_ruby_syntax.rb +0 -35
  279. data/lib/convenient_service/examples/rails/gemfile/services/format.rb +0 -66
  280. data/lib/convenient_service/examples/rails/gemfile/services/format_body.rb +0 -79
  281. data/lib/convenient_service/examples/rails/gemfile/services/format_gems_with_envs.rb +0 -82
  282. data/lib/convenient_service/examples/rails/gemfile/services/format_gems_without_envs.rb +0 -70
  283. data/lib/convenient_service/examples/rails/gemfile/services/format_header.rb +0 -68
  284. data/lib/convenient_service/examples/rails/gemfile/services/merge_sections.rb +0 -25
  285. data/lib/convenient_service/examples/rails/gemfile/services/parse_content.rb +0 -89
  286. data/lib/convenient_service/examples/rails/gemfile/services/print_shell_command.rb +0 -40
  287. data/lib/convenient_service/examples/rails/gemfile/services/read_file_content.rb +0 -27
  288. data/lib/convenient_service/examples/rails/gemfile/services/replace_file_content.rb +0 -37
  289. data/lib/convenient_service/examples/rails/gemfile/services/run_shell_command.rb +0 -40
  290. data/lib/convenient_service/examples/rails/gemfile/services/strip_comments.rb +0 -107
  291. data/lib/convenient_service/examples/rails/gemfile/services.rb +0 -21
  292. data/lib/convenient_service/examples/rails/gemfile.rb +0 -27
  293. data/lib/convenient_service/examples/rails/v1/gemfile/rails_service/config.rb +0 -58
  294. data/lib/convenient_service/examples/rails/v1/gemfile/rails_service.rb +0 -3
  295. data/lib/convenient_service/examples/rails/v1/gemfile/services/assert_file_exists.rb +0 -27
  296. data/lib/convenient_service/examples/rails/v1/gemfile/services/assert_file_not_empty.rb +0 -27
  297. data/lib/convenient_service/examples/rails/v1/gemfile/services/assert_node_available.rb +0 -28
  298. data/lib/convenient_service/examples/rails/v1/gemfile/services/assert_npm_package_available.rb +0 -37
  299. data/lib/convenient_service/examples/rails/v1/gemfile/services/assert_valid_ruby_syntax.rb +0 -37
  300. data/lib/convenient_service/examples/rails/v1/gemfile/services/format.rb +0 -68
  301. data/lib/convenient_service/examples/rails/v1/gemfile/services/format_body.rb +0 -81
  302. data/lib/convenient_service/examples/rails/v1/gemfile/services/format_gems_with_envs.rb +0 -84
  303. data/lib/convenient_service/examples/rails/v1/gemfile/services/format_gems_without_envs.rb +0 -72
  304. data/lib/convenient_service/examples/rails/v1/gemfile/services/format_header.rb +0 -70
  305. data/lib/convenient_service/examples/rails/v1/gemfile/services/merge_sections.rb +0 -27
  306. data/lib/convenient_service/examples/rails/v1/gemfile/services/parse_content.rb +0 -91
  307. data/lib/convenient_service/examples/rails/v1/gemfile/services/read_file_content.rb +0 -29
  308. data/lib/convenient_service/examples/rails/v1/gemfile/services/replace_file_content.rb +0 -39
  309. data/lib/convenient_service/examples/rails/v1/gemfile/services/run_shell_command.rb +0 -38
  310. data/lib/convenient_service/examples/rails/v1/gemfile/services/strip_comments.rb +0 -109
  311. data/lib/convenient_service/examples/rails/v1/gemfile/services.rb +0 -20
  312. data/lib/convenient_service/examples/rails/v1/gemfile.rb +0 -29
  313. data/lib/convenient_service/examples/standard/cowsay/services/build_cloud.rb +0 -42
  314. data/lib/convenient_service/examples/standard/cowsay/services/build_cow.rb +0 -38
  315. data/lib/convenient_service/examples/standard/cowsay/services/print.rb +0 -32
  316. data/lib/convenient_service/examples/standard/cowsay/services.rb +0 -5
  317. data/lib/convenient_service/examples/standard/cowsay.rb +0 -26
  318. data/lib/convenient_service/examples/standard/date_time/services/safe_parse.rb +0 -31
  319. data/lib/convenient_service/examples/standard/date_time/services.rb +0 -3
  320. data/lib/convenient_service/examples/standard/date_time.rb +0 -25
  321. data/lib/convenient_service/examples/standard/factorial/services/calculate.rb +0 -55
  322. data/lib/convenient_service/examples/standard/factorial/services.rb +0 -3
  323. data/lib/convenient_service/examples/standard/factorial/utils/timeout/with_timeout.rb +0 -50
  324. data/lib/convenient_service/examples/standard/factorial/utils/timeout.rb +0 -21
  325. data/lib/convenient_service/examples/standard/factorial/utils.rb +0 -3
  326. data/lib/convenient_service/examples/standard/factorial.rb +0 -26
  327. data/lib/convenient_service/examples/standard/gemfile/services/assert_file_exists.rb +0 -30
  328. data/lib/convenient_service/examples/standard/gemfile/services/assert_file_not_empty.rb +0 -30
  329. data/lib/convenient_service/examples/standard/gemfile/services/assert_node_available.rb +0 -26
  330. data/lib/convenient_service/examples/standard/gemfile/services/assert_npm_package_available.rb +0 -48
  331. data/lib/convenient_service/examples/standard/gemfile/services/assert_valid_ruby_syntax.rb +0 -39
  332. data/lib/convenient_service/examples/standard/gemfile/services/format.rb +0 -80
  333. data/lib/convenient_service/examples/standard/gemfile/services/format_body.rb +0 -83
  334. data/lib/convenient_service/examples/standard/gemfile/services/format_gems_with_envs.rb +0 -86
  335. data/lib/convenient_service/examples/standard/gemfile/services/format_gems_without_envs.rb +0 -74
  336. data/lib/convenient_service/examples/standard/gemfile/services/format_header.rb +0 -66
  337. data/lib/convenient_service/examples/standard/gemfile/services/merge_sections.rb +0 -52
  338. data/lib/convenient_service/examples/standard/gemfile/services/parse_content.rb +0 -101
  339. data/lib/convenient_service/examples/standard/gemfile/services/print_shell_command.rb +0 -45
  340. data/lib/convenient_service/examples/standard/gemfile/services/read_file_content.rb +0 -39
  341. data/lib/convenient_service/examples/standard/gemfile/services/replace_file_content.rb +0 -48
  342. data/lib/convenient_service/examples/standard/gemfile/services/run_shell_command.rb +0 -54
  343. data/lib/convenient_service/examples/standard/gemfile/services/strip_comments.rb +0 -111
  344. data/lib/convenient_service/examples/standard/gemfile/services.rb +0 -21
  345. data/lib/convenient_service/examples/standard/gemfile.rb +0 -26
  346. data/lib/convenient_service/examples/standard/request_params/constants.rb +0 -15
  347. data/lib/convenient_service/examples/standard/request_params/entities/description.rb +0 -40
  348. data/lib/convenient_service/examples/standard/request_params/entities/format.rb +0 -40
  349. data/lib/convenient_service/examples/standard/request_params/entities/id.rb +0 -47
  350. data/lib/convenient_service/examples/standard/request_params/entities/logger.rb +0 -21
  351. data/lib/convenient_service/examples/standard/request_params/entities/request.rb +0 -23
  352. data/lib/convenient_service/examples/standard/request_params/entities/source.rb +0 -40
  353. data/lib/convenient_service/examples/standard/request_params/entities/tag.rb +0 -40
  354. data/lib/convenient_service/examples/standard/request_params/entities/title.rb +0 -40
  355. data/lib/convenient_service/examples/standard/request_params/entities.rb +0 -11
  356. data/lib/convenient_service/examples/standard/request_params/services/apply_default_param_values.rb +0 -26
  357. data/lib/convenient_service/examples/standard/request_params/services/cast_params.rb +0 -38
  358. data/lib/convenient_service/examples/standard/request_params/services/extract_params_from_body.rb +0 -70
  359. data/lib/convenient_service/examples/standard/request_params/services/extract_params_from_path.rb +0 -62
  360. data/lib/convenient_service/examples/standard/request_params/services/filter_out_unpermitted_params.rb +0 -26
  361. data/lib/convenient_service/examples/standard/request_params/services/log_request_params.rb +0 -54
  362. data/lib/convenient_service/examples/standard/request_params/services/merge_params.rb +0 -26
  363. data/lib/convenient_service/examples/standard/request_params/services/prepare.rb +0 -65
  364. data/lib/convenient_service/examples/standard/request_params/services/validate_casted_params.rb +0 -94
  365. data/lib/convenient_service/examples/standard/request_params/services/validate_uncasted_params.rb +0 -72
  366. data/lib/convenient_service/examples/standard/request_params/services.rb +0 -13
  367. data/lib/convenient_service/examples/standard/request_params/utils/array/wrap.rb +0 -46
  368. data/lib/convenient_service/examples/standard/request_params/utils/array.rb +0 -21
  369. data/lib/convenient_service/examples/standard/request_params/utils/http/request/parse_body.rb +0 -42
  370. data/lib/convenient_service/examples/standard/request_params/utils/http/request/parse_path.rb +0 -40
  371. data/lib/convenient_service/examples/standard/request_params/utils/http/request.rb +0 -28
  372. data/lib/convenient_service/examples/standard/request_params/utils/http.rb +0 -3
  373. data/lib/convenient_service/examples/standard/request_params/utils/integer/safe_parse.rb +0 -31
  374. data/lib/convenient_service/examples/standard/request_params/utils/integer.rb +0 -25
  375. data/lib/convenient_service/examples/standard/request_params/utils/json/safe_parse.rb +0 -40
  376. data/lib/convenient_service/examples/standard/request_params/utils/json.rb +0 -21
  377. data/lib/convenient_service/examples/standard/request_params/utils/object/blank.rb +0 -34
  378. data/lib/convenient_service/examples/standard/request_params/utils/object/present.rb +0 -31
  379. data/lib/convenient_service/examples/standard/request_params/utils/object.rb +0 -26
  380. data/lib/convenient_service/examples/standard/request_params/utils/url/valid.rb +0 -47
  381. data/lib/convenient_service/examples/standard/request_params/utils/url.rb +0 -21
  382. data/lib/convenient_service/examples/standard/request_params/utils.rb +0 -8
  383. data/lib/convenient_service/examples/standard/request_params.rb +0 -49
  384. data/lib/convenient_service/examples/standard/v1/cowsay/services/build_cloud.rb +0 -44
  385. data/lib/convenient_service/examples/standard/v1/cowsay/services/build_cow.rb +0 -40
  386. data/lib/convenient_service/examples/standard/v1/cowsay/services/print.rb +0 -34
  387. data/lib/convenient_service/examples/standard/v1/cowsay/services.rb +0 -5
  388. data/lib/convenient_service/examples/standard/v1/cowsay.rb +0 -26
  389. data/lib/convenient_service/examples/standard/v1/date_time/services/safe_parse.rb +0 -33
  390. data/lib/convenient_service/examples/standard/v1/date_time/services.rb +0 -3
  391. data/lib/convenient_service/examples/standard/v1/date_time.rb +0 -25
  392. data/lib/convenient_service/examples/standard/v1/factorial/services/calculate.rb +0 -51
  393. data/lib/convenient_service/examples/standard/v1/factorial/services.rb +0 -3
  394. data/lib/convenient_service/examples/standard/v1/factorial/utils/timeout/with_timeout.rb +0 -52
  395. data/lib/convenient_service/examples/standard/v1/factorial/utils/timeout.rb +0 -23
  396. data/lib/convenient_service/examples/standard/v1/factorial/utils.rb +0 -3
  397. data/lib/convenient_service/examples/standard/v1/factorial.rb +0 -26
  398. data/lib/convenient_service/examples/standard/v1/gemfile/services/assert_file_exists.rb +0 -32
  399. data/lib/convenient_service/examples/standard/v1/gemfile/services/assert_file_not_empty.rb +0 -32
  400. data/lib/convenient_service/examples/standard/v1/gemfile/services/assert_node_available.rb +0 -28
  401. data/lib/convenient_service/examples/standard/v1/gemfile/services/assert_npm_package_available.rb +0 -50
  402. data/lib/convenient_service/examples/standard/v1/gemfile/services/assert_valid_ruby_syntax.rb +0 -41
  403. data/lib/convenient_service/examples/standard/v1/gemfile/services/format.rb +0 -82
  404. data/lib/convenient_service/examples/standard/v1/gemfile/services/format_body.rb +0 -85
  405. data/lib/convenient_service/examples/standard/v1/gemfile/services/format_gems_with_envs.rb +0 -88
  406. data/lib/convenient_service/examples/standard/v1/gemfile/services/format_gems_without_envs.rb +0 -76
  407. data/lib/convenient_service/examples/standard/v1/gemfile/services/format_header.rb +0 -68
  408. data/lib/convenient_service/examples/standard/v1/gemfile/services/merge_sections.rb +0 -54
  409. data/lib/convenient_service/examples/standard/v1/gemfile/services/parse_content.rb +0 -103
  410. data/lib/convenient_service/examples/standard/v1/gemfile/services/read_file_content.rb +0 -41
  411. data/lib/convenient_service/examples/standard/v1/gemfile/services/replace_file_content.rb +0 -50
  412. data/lib/convenient_service/examples/standard/v1/gemfile/services/run_shell_command.rb +0 -52
  413. data/lib/convenient_service/examples/standard/v1/gemfile/services/strip_comments.rb +0 -113
  414. data/lib/convenient_service/examples/standard/v1/gemfile/services.rb +0 -20
  415. data/lib/convenient_service/examples/standard/v1/gemfile.rb +0 -26
  416. data/lib/convenient_service/examples/standard/v1/request_params/constants.rb +0 -17
  417. data/lib/convenient_service/examples/standard/v1/request_params/entities/description.rb +0 -42
  418. data/lib/convenient_service/examples/standard/v1/request_params/entities/format.rb +0 -42
  419. data/lib/convenient_service/examples/standard/v1/request_params/entities/id.rb +0 -49
  420. data/lib/convenient_service/examples/standard/v1/request_params/entities/logger.rb +0 -23
  421. data/lib/convenient_service/examples/standard/v1/request_params/entities/request.rb +0 -25
  422. data/lib/convenient_service/examples/standard/v1/request_params/entities/source.rb +0 -42
  423. data/lib/convenient_service/examples/standard/v1/request_params/entities/tag.rb +0 -42
  424. data/lib/convenient_service/examples/standard/v1/request_params/entities/title.rb +0 -42
  425. data/lib/convenient_service/examples/standard/v1/request_params/entities.rb +0 -11
  426. data/lib/convenient_service/examples/standard/v1/request_params/services/apply_default_param_values.rb +0 -28
  427. data/lib/convenient_service/examples/standard/v1/request_params/services/cast_params.rb +0 -40
  428. data/lib/convenient_service/examples/standard/v1/request_params/services/extract_params_from_body.rb +0 -72
  429. data/lib/convenient_service/examples/standard/v1/request_params/services/extract_params_from_path.rb +0 -64
  430. data/lib/convenient_service/examples/standard/v1/request_params/services/filter_out_unpermitted_params.rb +0 -28
  431. data/lib/convenient_service/examples/standard/v1/request_params/services/log_request_params.rb +0 -56
  432. data/lib/convenient_service/examples/standard/v1/request_params/services/merge_params.rb +0 -28
  433. data/lib/convenient_service/examples/standard/v1/request_params/services/prepare.rb +0 -67
  434. data/lib/convenient_service/examples/standard/v1/request_params/services/validate_casted_params.rb +0 -96
  435. data/lib/convenient_service/examples/standard/v1/request_params/services/validate_uncasted_params.rb +0 -74
  436. data/lib/convenient_service/examples/standard/v1/request_params/services.rb +0 -13
  437. data/lib/convenient_service/examples/standard/v1/request_params/utils/array/wrap.rb +0 -48
  438. data/lib/convenient_service/examples/standard/v1/request_params/utils/array.rb +0 -23
  439. data/lib/convenient_service/examples/standard/v1/request_params/utils/http/request/parse_body.rb +0 -44
  440. data/lib/convenient_service/examples/standard/v1/request_params/utils/http/request/parse_path.rb +0 -42
  441. data/lib/convenient_service/examples/standard/v1/request_params/utils/http/request.rb +0 -30
  442. data/lib/convenient_service/examples/standard/v1/request_params/utils/http.rb +0 -3
  443. data/lib/convenient_service/examples/standard/v1/request_params/utils/integer/safe_parse.rb +0 -33
  444. data/lib/convenient_service/examples/standard/v1/request_params/utils/integer.rb +0 -27
  445. data/lib/convenient_service/examples/standard/v1/request_params/utils/json/safe_parse.rb +0 -42
  446. data/lib/convenient_service/examples/standard/v1/request_params/utils/json.rb +0 -23
  447. data/lib/convenient_service/examples/standard/v1/request_params/utils/object/blank.rb +0 -36
  448. data/lib/convenient_service/examples/standard/v1/request_params/utils/object/present.rb +0 -33
  449. data/lib/convenient_service/examples/standard/v1/request_params/utils/object.rb +0 -28
  450. data/lib/convenient_service/examples/standard/v1/request_params/utils/url/valid.rb +0 -49
  451. data/lib/convenient_service/examples/standard/v1/request_params/utils/url.rb +0 -23
  452. data/lib/convenient_service/examples/standard/v1/request_params/utils.rb +0 -8
  453. data/lib/convenient_service/examples/standard/v1/request_params.rb +0 -49
  454. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/commands/generate_printable_method.rb +0 -50
  455. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/sub_matchers/arguments/commands/apply_stub_to_track_delegations.rb +0 -82
  456. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/sub_matchers/arguments/commands/generate_printable_arguments.rb +0 -100
  457. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/sub_matchers/arguments.rb +0 -95
  458. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/sub_matchers/base.rb +0 -87
  459. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/sub_matchers/return_its_value.rb +0 -132
  460. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/sub_matchers/with_any_arguments.rb +0 -37
  461. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/sub_matchers/with_concrete_arguments.rb +0 -37
  462. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/sub_matchers/without_arguments.rb +0 -37
  463. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/values/base.rb +0 -41
  464. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/values/with_calling_original.rb +0 -30
  465. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings/values/without_calling_original.rb +0 -30
  466. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings.rb +0 -12
  467. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings_collection/exceptions.rb +0 -57
  468. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/chainings_collection.rb +0 -171
  469. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities/delegation.rb +0 -79
  470. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher/entities.rb +0 -5
  471. data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/matcher.rb +0 -276
  472. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/reassignment/commands/define_method_in_container.rb +0 -74
  473. data/lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/callers/reassignment/commands.rb +0 -3
  474. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed/middleware.rb +0 -72
  475. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step/can_be_executed.rb +0 -4
  476. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_be_result_step.rb +0 -5
  477. data/lib/convenient_service/service/plugins/can_have_steps/entities/step/plugins/can_have_fallbacks/result.rb +0 -3
  478. data/lib/convenient_service/service/plugins/has_j_send_result/entities/result/plugins/can_have_checked_status/middleware.rb +0 -43
  479. data/lib/convenient_service/services.rb +0 -4
  480. data/lib/convenient_service/support/gems/active_model.rb +0 -36
  481. data/lib/convenient_service/support/gems/logger.rb +0 -37
  482. data/lib/convenient_service/support/gems/paint.rb +0 -37
  483. data/lib/convenient_service/support/gems/rspec.rb +0 -58
  484. data/lib/convenient_service/support/ruby.rb +0 -53
  485. data/lib/convenient_service/support/version/null_version.rb +0 -85
  486. data/lib/convenient_service/support/version.rb +0 -75
  487. data/logo.png +0 -0
  488. data/minitest.rb +0 -30
  489. data/yard/yard-convenient_service_concern.rb +0 -45
  490. /data/lib/convenient_service/{support → dependencies/queries}/gems.rb +0 -0
  491. /data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/{entities/matcher/commands.rb → commands.rb} +0 -0
  492. /data/lib/convenient_service/rspec/primitive_matchers/classes/delegate_to/entities/{matcher/entities/chainings/sub_matchers → sub_matchers}/arguments/commands.rb +0 -0
data/ROADMAP.md DELETED
@@ -1,92 +0,0 @@
1
- # Roadmap
2
-
3
- | Priority | Status | Goal | Notes |
4
- | - | - | - | - |
5
- | High | ✅ | 100% coverage of `Core` | |
6
- | Medium | 🚧 | Type signatures for the whole codebase ([Yard @param, @overload, @return](https://rubydoc.info/gems/yard/file/docs/Tags.md#taglist)) | |
7
- | Medium | ✅ | `Service.success?` shortcut for `Service.result.success?` | |
8
- | Medium | ✅ | Release `v0.1.0` with a warning that lib is still under heavy development | |
9
- | Medium | 🚧 | [Active Record transaction](https://api.rubyonrails.org/classes/ActiveRecord/Transactions/ClassMethods.html) examples | |
10
- | Medium | 🚧 | [Rails Current Attributes integration](https://api.rubyonrails.org/classes/ActiveSupport/CurrentAttributes.html) to cache repeated results | |
11
- | Low | 🚧 | [Capybara](https://github.com/teamcapybara/capybara) examples | |
12
- | Medium | 🚧 | Inline step sequence | |
13
- | High | 🚧 | Move callbacks to internals | In order to NOT pollute the public interface of users services |
14
- | Low | 🚧 | Create an example of `id_or_record` [attribute](https://api.rubyonrails.org/classes/ActiveRecord/Attributes/ClassMethods.html) |
15
- | Low | 🚧 | GitHub Wiki/Gists for Support | |
16
- | Low | 🚧 | Contribute to Shoulda Matchers | |
17
- | High | ✅ | `respond_to_missing?` | [ConvenientService::Core::ClassMethods#respond_to_missing?](https://github.com/marian13/convenient_service/blob/main/lib/convenient_service/core/class_methods.rb#L105), [ConvenientService::Core::InstanceMethods#respond_to_missing?](https://github.com/marian13/convenient_service/blob/main/lib/convenient_service/core/instance_methods.rb#L30) |
18
- | High | ⏳ | Custom matcher to track `ConvenientService::Logger` messages | |
19
- | Medium | ✅ | Remove `respond_to?` from `Copyable` | [7d2a676c171d201301f1c35d498c3b1caf8579b1](https://github.com/marian13/convenient_service/commit/7d2a676c171d201301f1c35d498c3b1caf8579b1) |
20
- | High | 🚧 | Unified `inspect` | Remove `internals` from inspect, ivars wrapperd by double underscore |
21
- | High | ✅ | Remove race condition for `method_missing` | https://github.com/marian13/convenient_service/pull/5 |
22
- | High | ✅ | Remove incompatiility of [Module#include](https://gist.github.com/marian13/9c25041f835564e945d978839097d419) | https://github.com/marian13/convenient_service/pull/3 |
23
- | Medium | ✅ | Split `Utils` specs into separate files | [convenient_service/spec/lib/convenient_service/utils](https://github.com/marian13/convenient_service/tree/main/spec/lib/convenient_service/utils) |
24
- | Medium | 🚧 | How to test thread-safety? | |
25
- | Medium | ✅ | Rename `Utils::Module.find_own_const` to `Utils::Module.get_own_const` | [ConvenientService::Utils::Module::GetOwnConst](https://github.com/marian13/convenient_service/blob/main/lib/convenient_service/utils/module/get_own_const.rb) |
26
- | Medium | 🚧 | Mark `@api private` methods, classes | [YARD Tags](https://www.rubydoc.info/gems/yard/file/docs/Tags.md) |
27
- | Medium | ✅ | A way to check if block has one required positional argument | [#proc_has_one_positional_argument?](https://github.com/marian13/convenient_service/blob/main/lib/convenient_service/utils/proc/exec_config.rb#L96) |
28
- | Low | 🚧 | Define method middleware caller with visibility | |
29
- | Low | 🚧 | Dependency containers to remove high coupling | |
30
- | Low | 🚧 | Measure performance | See [benchmark](https://github.com/marian13/convenient_service/tree/main/benchmark) |
31
- | Low | 🚧 | Write [Convenient Service](https://github.com/marian13/convenient_service) specific middleware backend | |
32
- | High | 🚧 | Optimize `stack.dup` in `MethodMiddlewares#call` | Core v3 |
33
- | Medium | 🚧 | Make a decision of what to do with `printable_block` in custom RSpec matchers | |
34
- | Medium | 🚧 | User-friendly exception messages | |
35
- | High | ❌ | Factory for POROs in specs ❗❗❗ | Proxy config antipattern |
36
- | High | 🚧 | Resolve warning during specs | |
37
- | Medium | 🚧 | Consider to change/rewrite `delegate` backend to minify its interface | |
38
- | Medium | 🚧 | Same order of attr macros, delegators, initialize, class methods, attr methods, queries, actions, `to_*`, comparison, inspect | |
39
- | Medium | ✅ | Move `Cache` to `Support` | |
40
- | Medium | 🚧 | Statically specify plugin dependencies | |
41
- | Medium | 🚧 | Statically specify plugin entity types | |
42
- | Medium | 🚧 | Consider to create `ComparableProc` descendant from `Proc` | To abstract away `block&.source_location != other.block&.source_location` |
43
- | Medium | 🚧 | Consider to use `Struct` as key in `Support::Cache` | To hide overriden [eql?](https://github.com/marian13/convenient_service/blob/v0.1.0/lib/convenient_service/common/plugins/caches_return_value/entities/key.rb#L60) |
44
- | High | 🚧 | `included_once` for `Support::Concern` |
45
- | Medium | 🚧 | Custom YARD type for service instance, service class as return values |
46
- | Medium | 🚧 | Heredoc for error messages |
47
- | Medium | 🚧 | Specs for `be_success`, `be_error`, `be_failure` matchers | |
48
- | Low | 🚧 | [Receive Counts](https://relishapp.com/rspec/rspec-mocks/docs/setting-constraints/receive-counts) for `delegate_to` | |
49
- | Low | 🚧 | Prefer versioning instead of modification plugin | |
50
- | Low | 🚧 | Consider to move `__steps__` and `__callbacks__` to `internals_class` | Benefit? |
51
- | Medium | 🚧 | User friendly `raise` that removes lib backtrace from caller | Should have a `debug` mode. Should work well with examples. Check RSpec `CallerFilter.first_non_rspec_line` |
52
- | High | 🚧 | A plugin that catches `StandardError` and returns `failure` | Should be the lowest in the stack |
53
- | High | 🚧 | `Support::Command` alias | Should be visible to the end user |
54
- | Low | 🚧 | Parallel steps | A killer feature |
55
- | Medium | 🚧 | Add `Ruby 3.2` support to `Docker` and `CI` | |
56
- | Low | 🚧 | `overload do` | |
57
- | Low | 🚧 | Same spec example group organization | |
58
- | Medium | 🚧 | `Support::Arguments` | |
59
- | Low | 🚧 | Null object to Nil object? | |
60
- | High | 🚧 | Do not use Testing Toolkit in the Primitives layer | See [Components Diagram](https://marian13.github.io/static_content/convenient_service/diagrams/components_graph.html) + it should take the minimal amount of efforts to extract and reuse `Utils`, `Suppport` in the different projects |
61
- | Medium | 🚧 | Perfromance testing | [rspec-benchmark](https://github.com/piotrmurach/rspec-benchmark), [Testing object allocations](https://www.honeybadger.io/blog/testing-object-allocations/), [allocation_stats](https://github.com/srawlins/allocation_stats) |
62
- | Medium | 🚧 | Mutant testing | [mutant](https://github.com/mbj/mutant) |
63
- | Low | 🚧 | Add `JRuby` support | [jruby](https://www.jruby.org/) |
64
- | Medium | 🚧 | Add `shoulda-context` to test conditionals when `RSpec` is not loaded | [shoulda-context](https://github.com/thoughtbot/shoulda-context) |
65
- | High | 🚧 | Abstract factory for `CastMethod` | |
66
- | Medium | 🚧 | `delegate_to` - option to specify of how to compare blocks | |
67
- | High | 🚧 | Add specs for [Reassignment::Commands::DefineMethodInContainer](https://github.com/marian13/convenient_service/blob/v0.6.0/lib/convenient_service/service/plugins/has_result_steps/entities/method/entities/callers/reassignment/commands/define_method_in_container.rb#L13) | |
68
- | High | 🚧 | Example for dependency containers | |
69
- | Low | 🚧 | `delegate_to.and_return_value` | |
70
- | Medium | 🚧 | Support two Cache implementations, array-based and hash-based | |
71
- | Low | 🚧 | `delegate_to_service` | |
72
- | High | 🚧 | Intentionally disable plugins to document dependencies | |
73
- | Low | 🚧 | `.and_return_value_should be_instance_of(expected)` | |
74
- | Low | 🚧 | `ConvenientService::Config.delegate_to_diff_argorithm = :diffy` | |
75
- | Low | 🚧 | Rubocop cop that complains when a service name does NOT start with a verb | |
76
- | Low | 🚧 | Generator to create a spec default structure | |
77
- | Low | 🚧 | Rubocop cop that complains when a service does NOT have its own suite of specs | |
78
- | High | 🚧 | Add specs for `WrappedMethod#call` | |
79
- | High | 🚧 | Check whether ignoring the error was used properly | |
80
- | High | 🚧 | Steps are great for `and` logic, but what to do with `or` logic? | Create the third service | |
81
- | High | 🚧 | Steps are great for `and` logic, but what to do with `case when` logic? | Create the third service | |
82
- | High | 🚧 | Cacing of services | It is relatively simple to add caching for steps, but not for all services, since steps are managed by framework | |
83
- | High | 🚧 | Fallback should return result with already checked status | |
84
- | Medium | 🚧 | Licence: Commercial Support docs | See [Sidekiq Commercial Support](https://github.com/sidekiq/sidekiq/wiki/Commercial-Support) |
85
- | Meduim | 🚧 | Licence: Acknowledgements - Government End Users | See [GraphQL Ruby Commercial Licence](https://graphql.pro/COMM-LICENSE.html) |
86
- | Medium | 🚧 | Licence: Applicable Law and Jurisdiction (Miscellaneous - Governing Law) | See [Kiba Applicable Law and Jurisdiction](https://github.com/thbar/kiba/blob/master/COMM-LICENSE.md) |
87
- | Medium | 🚧 | Licence: Contact email `info@convenientservice.org` | |
88
- | Medium | 🚧 | Contributing Guide | See [Sidekiq Contributing](https://github.com/sidekiq/sidekiq/blob/main/.github/contributing.md) |
89
- | High | 🚧 | `comparing_by` for `delegate_to` | |
90
- | High | 🚧 | Remove extra files from bundled gem version | |
91
-
92
- Search for `TODO`s in the codebase or check [discussions](https://github.com/marian13/convenient_service/discussions) for more tasks.
data/Rakefile DELETED
@@ -1,54 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
-
5
- ##
6
- # NOTE: Why not `bin` folder? It has a different purpose. It should contain "binaries/executables" that can be used by the end user.
7
- # Search for `bin` in the following links for more info.
8
- # - https://guides.rubygems.org/what-is-a-gem/
9
- # - https://guides.rubygems.org/faqs/
10
- #
11
- task :confirm do
12
- require "tty-prompt"
13
-
14
- ##
15
- # NOTE: `ARGV[0]` contains `confirm` (this task name).
16
- #
17
- message = ARGV[1] || "Are you sure?"
18
-
19
- ##
20
- # NOTE: Why "tty-prompt"? No time to write, maintain complex, cross-platform bash scripts if you are a full-time application developer.
21
- #
22
- prompt = TTY::Prompt.new
23
-
24
- ##
25
- # NOTE: `prompt.yes?` docs.
26
- # https://github.com/piotrmurach/tty-prompt#25-yesno
27
- #
28
- yes = prompt.yes?(message)
29
-
30
- ##
31
- # NOTE: Use `echo $?` to debug exit code (0 means ok, 1 - error).
32
- #
33
- yes ? exit(0) : exit(1)
34
- end
35
-
36
- task :playground do
37
- require "irb"
38
-
39
- require_relative "env"
40
-
41
- require "convenient_service"
42
-
43
- require_relative "spec/support/convenient_service"
44
- require_relative "spec/support/convenient_service/rails" if ENV["APPRAISAL_NAME"] == "all" || ENV["APPRAISAL_NAME"].include?("rails")
45
- require_relative "spec/support/convenient_service/dry" if ENV["APPRAISAL_NAME"] == "all" || ENV["APPRAISAL_NAME"].include?("dry")
46
-
47
- ##
48
- # NOTE: Clears `ARGV` since both `rake` and `irb` uses it.
49
- # https://stackoverflow.com/a/2876645/12201472
50
- #
51
- ARGV.clear
52
-
53
- IRB.start(__FILE__)
54
- end