Skip to content

A utility package with useful classes, structs, and extensions.

License

Notifications You must be signed in to change notification settings

aking618/RoyalSwift

Repository files navigation

Royal Swift

Email: ayrenking.dev@gmail.com

Royal Swift is a utility package that includes any classes, structs, enum, or extension that I have written and found useful!

Installation

Xcode Projects

Select File -> Swift Packages -> Add Package Dependency and enter https://github.com/aking618/RoyalSwift.

Swift Package Manager Projects

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

let package = Package(
    //...
    dependencies: [
        .package(
            url: "https://github.com/aking618/RoyalSwift",
            exact: "0.0.1"
        ),
    ],
    //...
)

From there, refer to RoyalSwift as a "target dependency" in any of your package's targets that need it.

targets: [
    .target(
        name: "YourLibrary",
        dependencies: [
          "RoyalSwift",
        ],
        ...
    ),
    ...
]

Usage

🗺 Roadmap

  • World Domination

💻 Developing

Requirements

  • Xcode 15.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

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

About

A utility package with useful classes, structs, and extensions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published