Skip to content

bitrise-io/aci-spm-sample

Repository files navigation

AciSpmSample

[ A brief synopsis of this library ].

Installation

Xcode Projects

Select File -> Swift Packages -> Add Package Dependency and enter https://github.com/bitrise-io/aci-spm-sample

Swift Package Manager Projects

You can add AciSpmSample as a package dependency in your Package.swift file:

let package = Package(
    //...
    dependencies: [
        .package(
            url: "https://github.com/bitrise-io/aci-spm-sample",
            exact: "0.0.1"
        ),
    ],
    //...
)

From there, refer to the AciSpmSample "product" delivered by the AciSpmSample "package" inside of any of your project's target dependencies:

targets: [
    .target(
        name: "YourLibrary",
        dependencies: [
            .product(
                name: "AciSpmSample",
                package: "AciSpmSample"
            ),
        ],
        ...
    ),
    ...
]

Then simply import AciSpmSample wherever you’d like to use it.

Usage

🗺 Roadmap

  • World Domination

💻 Developing

Requirements

  • Xcode 14.0+

✍️ Building The Documentation

Documentation is built with DocC (see Apple's guidance for more details about creating DocC content).

To build and preview the documentation output, follow the instructions for the here for the Swift-DocC Plugin.

If you're using VSCode, there's also a task configuration that will handle this directly from the editor 💪

🏷 License

AciSpmSample is available under the MIT license. See the LICENSE file for more info.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published