Skip to content

Commit

Permalink
Merge pull request #16 from turekj/master
Browse files Browse the repository at this point in the history
Add support for Swift Package Manager
  • Loading branch information
rafiki270 authored Jul 19, 2023
2 parents b7a49d3 + dc6ae2a commit c4dee82
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
43 changes: 43 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"object": {
"pins": [
{
"package": "CwlCatchException",
"repositoryURL": "https://github.com/mattgallagher/CwlCatchException.git",
"state": {
"branch": null,
"revision": "3b123999de19bf04905bc1dfdb76f817b0f2cc00",
"version": "2.1.2"
}
},
{
"package": "CwlPreconditionTesting",
"repositoryURL": "https://github.com/mattgallagher/CwlPreconditionTesting.git",
"state": {
"branch": null,
"revision": "a23ded2c91df9156628a6996ab4f347526f17b6b",
"version": "2.1.2"
}
},
{
"package": "Nimble",
"repositoryURL": "https://github.com/Quick/Nimble",
"state": {
"branch": null,
"revision": "831000dd1939bc2096df572c5fd156f41d858bfa",
"version": "12.1.0"
}
},
{
"package": "Quick",
"repositoryURL": "https://github.com/Quick/Quick",
"state": {
"branch": null,
"revision": "16910e406be96e08923918315388c3e989deac9e",
"version": "6.1.0"
}
}
]
},
"version": 1
}
20 changes: 20 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// swift-tools-version:5.5
import PackageDescription

let package = Package(
name: "SpecTools",
platforms: [
.iOS("11.0"),
.tvOS("11.0")
],
products: [
.library(name: "SpecTools", targets: ["SpecTools"]),
],
dependencies: [
.package(url: "https://github.com/Quick/Quick", .upToNextMajor(from: "7.0.0")),
.package(url: "https://github.com/Quick/Nimble", .upToNextMajor(from: "12.0.0")),
],
targets: [
.target(name: "SpecTools", path: "SpecTools/Classes"),
]
)
1 change: 1 addition & 0 deletions SpecTools/Classes/Visualize.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit


// MARK: - Settings
Expand Down

0 comments on commit c4dee82

Please sign in to comment.