swift-hoods

0.2.0

🏘️ A collection of my Swift building blocks with dependencies.
dirtyhenry/swift-hoods

What's New

2024-03-21T16:47:05Z
  • copyText: a pasteboard dependency for [pointfreeco/swift-dependencies][1];
  • InputableValue: a utility for handling values that can be initialized from
    command line arguments and fall back to user input prompts.
  • A Mailer TCA-feature with dual in-app composing and mailto fallback behaviour
  • Add testing utils for TCA dependencies

🏘️ 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

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

Last updated: Tue Apr 09 2024 04:00:35 GMT-0900 (Hawaii-Aleutian Daylight Time)