BuildSystemPlugins

This plugin assumes you have the same architecture proposed in here as a base. As an example for this implementation you can check here. However, this plguin assums you are using SPM instead of tuist to separate between the targets. The idea is you got on SPM package, with 3 products and 3+ targets. Products are Implementation, Interface and Mocks and targets are Implementation, Interface and Mocks and tests targets.

With the release of latest RC from Xcode 13.4 we can now have pre-/post-build scripts on the package level

This package introduces SwiftGen, SwiftLint and Sourcery as a build took to swift packages using SPM technologies

Source file generation, as in SwiftGen generation for the localization, images, storyboards and as in Sourcery generating mocks in a Generated folder are directly saved in the derived data folder for the target.. so you won’t see it but it’s in the build

Two use cases for Mocks generation:

  • One for a protocol in the interface mocked in the mocks target
  • One for a protocol in the implementation mocked in the unit test and snapshot test target (say bye bye to writing duplicate mocks)

Main difference between cuckoo and Sourcery is that Sourcery does not force us to use a runtime library to test things.. it’s merly only writing the mocks for us

Swiftlint rules for errors and warnings are all enforced as warnings only on the source code of the target(s) you’re building and would require fixing before you can build

GitHub

View Github