Skip to content

Instantly share code, notes, and snippets.

@sunshinejr
Created October 22, 2017 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunshinejr/b2cc93b9e9ac9044f15c5f91f24f7e05 to your computer and use it in GitHub Desktop.
Save sunshinejr/b2cc93b9e9ac9044f15c5f91f24f7e05 to your computer and use it in GitHub Desktop.
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "Harvey",
products: [
.library(
name: "Harvey",
targets: ["Harvey"]),
],
dependencies: [
.package(url: "https://github.com/sunshinejr/Quick.git", .branch("fix/spm_swift4")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "7.0.2")),
.package(url: "https://github.com/Moya/Moya.git", .upToNextMajor(from: "10.0.0"))
],
targets: [
.target(
name: "Harvey",
dependencies: ["Moya"]),
.testTarget(
name: "HarveyTests",
dependencies: ["Harvey", "Nimble", "Quick"]),
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment