Skip to content

Instantly share code, notes, and snippets.

@ceeK
Last active March 8, 2018 18:08
Show Gist options
  • Save ceeK/cddea396e1c5b3be2afa7963f4316e7a to your computer and use it in GitHub Desktop.
Save ceeK/cddea396e1c5b3be2afa7963f4316e7a to your computer and use it in GitHub Desktop.
AutoBuildable
extension Car: AutoBuildable {}
// run Sourcery
// get this for free! ->
let car = CarBuilder(wheels: 4) // any param without a default value goes into the initializer
.set(color: .red)
.set(hasCruiseControl: true)
.make()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment