-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from mac-gallagher/add-swift-pm
Add SPM support, update Quick/Nimble and codecov.yml
- Loading branch information
Showing
52 changed files
with
567 additions
and
462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,6 @@ s.author = { "Mac Gallagher" => "[email protected]" } | |
s.source = { :git => "https://github.com/mac-gallagher/MultiProgressView.git", :tag => "v1.1.0" } | ||
|
||
s.swift_version = "5.0" | ||
s.source_files = "MultiProgressView/**/*" | ||
s.source_files = "Sources/**/*" | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "Nimble", | ||
"repositoryURL": "https://github.com/Quick/Nimble", | ||
"state": { | ||
"branch": null, | ||
"revision": "f8657642dfdec9973efc79cc68bcef43a653a2bc", | ||
"version": "8.0.2" | ||
} | ||
}, | ||
{ | ||
"package": "Quick", | ||
"repositoryURL": "https://github.com/Quick/Quick", | ||
"state": { | ||
"branch": null, | ||
"revision": "94df9b449508344667e5afc7e80f8bcbff1e4c37", | ||
"version": "2.1.0" | ||
} | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// swift-tools-version:5.0 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "MultiProgressView", | ||
platforms: [ | ||
.iOS(.v9) | ||
], | ||
products: [ | ||
.library( | ||
name: "MultiProgressView", | ||
targets: ["MultiProgressView"]), | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/Quick/Quick", from: "2.1.0"), | ||
.package(url: "https://github.com/Quick/Nimble", from: "8.0.2") | ||
], | ||
targets: [ | ||
.target( | ||
name: "MultiProgressView", | ||
dependencies: []), | ||
.testTarget( | ||
name: "MultiProgressViewTests", | ||
dependencies: [ | ||
"MultiProgressView", | ||
"Quick", | ||
"Nimble" | ||
] | ||
) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
PODS: | ||
- Nimble (8.0.1) | ||
- Quick (2.0.0) | ||
- Nimble (8.0.2) | ||
- Quick (2.1.0) | ||
|
||
DEPENDENCIES: | ||
- Nimble | ||
- Quick | ||
- Nimble (>= 8.0.2) | ||
- Quick (>= 2.1.0) | ||
|
||
SPEC REPOS: | ||
https://github.com/cocoapods/specs.git: | ||
- Nimble | ||
- Quick | ||
|
||
SPEC CHECKSUMS: | ||
Nimble: 45f786ae66faa9a709624227fae502db55a8bdd0 | ||
Quick: ce1276c7c27ba2da3cb2fd0cde053c3648b3b22d | ||
Nimble: 622629381bda1dd5678162f21f1368cec7cbba60 | ||
Quick: 4be43f6634acfa727dd106bdf3929ce125ffa79d | ||
|
||
PODFILE CHECKSUM: f44f576160ba95166a2b98fdeda46e9c573717ea | ||
PODFILE CHECKSUM: 12722990d4c51f0f49ab87b5c08ff7edfa368301 | ||
|
||
COCOAPODS: 1.6.1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.