Skip to content

dirtyhenry/swift-hoods

Repository files navigation

🏘️ Hoods

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 using swift-hoods within an app.

Usage

import Hoods

Installation

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")
    ])
]

License

MIT