ccios 4.0.2 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +4 -4
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG.md +31 -0
  5. data/Gemfile.lock +13 -12
  6. data/README.md +188 -51
  7. data/ccios.gemspec +1 -1
  8. data/lib/ccios/argument_template_parameter.rb +33 -0
  9. data/lib/ccios/code_templater.rb +24 -7
  10. data/lib/ccios/config.rb +45 -78
  11. data/lib/ccios/file_creator.rb +24 -21
  12. data/lib/ccios/file_template_definition.rb +94 -0
  13. data/lib/ccios/flag_template_parameter.rb +17 -0
  14. data/lib/ccios/group_template_definition.rb +54 -0
  15. data/lib/ccios/pbxproj_parser.rb +3 -54
  16. data/lib/ccios/snippet_template_definition.rb +27 -0
  17. data/lib/ccios/template_definition.rb +116 -0
  18. data/lib/ccios/templates/Coordinator/template.yml +20 -0
  19. data/lib/ccios/templates/Interactor/template.yml +25 -0
  20. data/lib/ccios/templates/Presenter/template.yml +49 -0
  21. data/lib/ccios/templates/{repository_implementation.mustache → Repository/repository_implementation.mustache} +0 -1
  22. data/lib/ccios/templates/Repository/template.yml +26 -0
  23. data/lib/ccios/templates_loader.rb +31 -0
  24. data/lib/ccios.rb +65 -43
  25. data/templates_library/async/Coordinator/coordinator.mustache +41 -0
  26. data/templates_library/async/Coordinator/template.yml +20 -0
  27. data/templates_library/async/Presenter/dependency_provider.mustache +14 -0
  28. data/templates_library/async/Presenter/presenter.mustache +21 -0
  29. data/templates_library/async/Presenter/presenter_assembly.mustache +15 -0
  30. data/templates_library/async/Presenter/presenter_implementation.mustache +35 -0
  31. data/templates_library/async/Presenter/template.yml +49 -0
  32. data/templates_library/async/Presenter/view_contract.mustache +14 -0
  33. data/templates_library/async/Presenter/view_controller.mustache +23 -0
  34. data/templates_library/default/README.md +1 -0
  35. metadata +40 -22
  36. data/lib/ccios/coordinator_generator.rb +0 -18
  37. data/lib/ccios/interactor_generator.rb +0 -33
  38. data/lib/ccios/presenter_generator.rb +0 -71
  39. data/lib/ccios/repository_generator.rb +0 -44
  40. /data/lib/ccios/templates/{coordinator.mustache → Coordinator/coordinator.mustache} +0 -0
  41. /data/lib/ccios/templates/{interactor.mustache → Interactor/interactor.mustache} +0 -0
  42. /data/lib/ccios/templates/{interactor_assembly.mustache → Interactor/interactor_assembly.mustache} +0 -0
  43. /data/lib/ccios/templates/{interactor_implementation.mustache → Interactor/interactor_implementation.mustache} +0 -0
  44. /data/lib/ccios/templates/{dependency_provider.mustache → Presenter/dependency_provider.mustache} +0 -0
  45. /data/lib/ccios/templates/{presenter.mustache → Presenter/presenter.mustache} +0 -0
  46. /data/lib/ccios/templates/{presenter_assembly.mustache → Presenter/presenter_assembly.mustache} +0 -0
  47. /data/lib/ccios/templates/{presenter_implementation.mustache → Presenter/presenter_implementation.mustache} +0 -0
  48. /data/lib/ccios/templates/{view_contract.mustache → Presenter/view_contract.mustache} +0 -0
  49. /data/lib/ccios/templates/{view_controller.mustache → Presenter/view_controller.mustache} +0 -0
  50. /data/lib/ccios/templates/{repository.mustache → Repository/repository.mustache} +0 -0
  51. /data/lib/ccios/templates/{repository_assembly.mustache → Repository/repository_assembly.mustache} +0 -0