A collection of my Swift building blocks that are using few well known dependencies, such as The Composable Architecture, as opposed to Blocks, my collection of dependency-free Swift code.
This repository contains:
Hoods
: a Swift library for my development needs;
And the following examples executables/apps:
HoodsApp
: a basic App usingswift-hoods
within an app.
import Hoods
Swift Package Manager is recommended:
dependencies: [
.package(
url: "https://github.com/dirtyhenry/swift-hoods",
from: "main"
),
]
Next, add Hoods
as a dependency of your test target:
targets: [
.target(name: "MyTarget", dependencies: [
.product(name: "Hoods", package: "swift-hoods")
])
]