Framework for automatic mock generation. Adds a set of handy methods, simplifying testing. One of the best and most complete solutions, including generics support and much more.
MIT License
1.04k
stars
106
forks
source link
How about packaging a build of SwiftyMocky CLI right inside the runtime library package/pod? #292
So you could expect ./Pods/SwiftyMocky to contain a directory called bin which would contain swiftymocky executable.
This has several advantages:
installation process is shortened by half of the steps
no need to depend on Homebrew or Mint
the versions between CLI and the runtime library are strictly aligned, you update one - you update the other, and you can not achieve a situation where a deployed project behaves unexpectedly due to the CLI version being different on someones setup
This has a disadvantage:
it requires work to be done, you actually have to do something to implement this suggestion
So you could expect
./Pods/SwiftyMocky
to contain a directory calledbin
which would containswiftymocky
executable.This has several advantages:
This has a disadvantage: