Framework Installation

May 22, 2020 ยท View on GitHub

Swift Package Manager

Add this as a package dependency in Xcode:

https://github.com/thoughtbot/Runes

Or add it as a dependency in your Package.swift file:

dependencies: [
  .package(url: "https://github.com/thoughtbot/Runes", from: "5.0.0"),
]

Carthage

github "thoughtbot/Runes"

Then run carthage update.

Follow the current instructions in Carthage's README for up to date installation instructions.

CocoaPods

Add the following to your Podfile:

pod 'Runes'

You will also need to make sure you're opting into using frameworks:

use_frameworks!

Then run pod install with CocoaPods 0.36 or newer.