-
Notifications
You must be signed in to change notification settings - Fork 26
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 #94 from Carthage/swift-3.1
Xcode 8.3 / SwiftPM 3.1
- Loading branch information
Showing
11 changed files
with
61 additions
and
34 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0.2 | ||
3.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
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,2 +1,2 @@ | ||
github "antitypical/Result" ~> 3.2 | ||
github "antitypical/Result" ~> 3.2.1 | ||
github "ReactiveCocoa/ReactiveSwift" ~> 1.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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
github "jspahrsummers/xcconfigs" "3d9d996" | ||
github "Quick/Quick" ~> 1.1 | ||
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034" | ||
github "Quick/Nimble" ~> 6.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034" | ||
github "Quick/Nimble" "v6.1.0" | ||
github "Quick/Quick" "v1.1.0" | ||
github "ReactiveCocoa/ReactiveSwift" "1.1.0" | ||
github "antitypical/Result" "3.2.0" | ||
github "antitypical/Result" "3.2.1" | ||
github "jspahrsummers/xcconfigs" "3d9d99634cae6d586e272543d527681283b33eb0" |
Submodule Nimble
updated
31 files
Submodule Result
updated
5 files
+11 −0 | .travis.yml | |
+1 −1 | Result.podspec | |
+1 −1 | Result/Info.plist | |
+11 −2 | Result/Result.swift | |
+1 −1 | Tests/ResultTests/Info.plist |
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,30 @@ | ||
{ | ||
"autoPin": true, | ||
"pins": [ | ||
{ | ||
"package": "Nimble", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/Quick/Nimble.git", | ||
"version": "6.1.0" | ||
}, | ||
{ | ||
"package": "Quick", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/Quick/Quick.git", | ||
"version": "1.1.0" | ||
}, | ||
{ | ||
"package": "ReactiveSwift", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/ReactiveCocoa/ReactiveSwift.git", | ||
"version": "1.1.1" | ||
}, | ||
{ | ||
"package": "Result", | ||
"reason": null, | ||
"repositoryURL": "https://github.com/antitypical/Result.git", | ||
"version": "3.2.1" | ||
} | ||
], | ||
"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 |
---|---|---|
@@ -1,9 +1,23 @@ | ||
import Foundation | ||
import PackageDescription | ||
|
||
var isSwiftPackagerManagerTest: Bool { | ||
return ProcessInfo.processInfo.environment["SWIFTPM_TEST_ReactiveTask"] == "YES" | ||
} | ||
|
||
let package = Package( | ||
name: "ReactiveTask", | ||
dependencies: [ | ||
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 2, 0)..<Version(3, .max, .max)), | ||
.Package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", versions: Version(1, 1, 0)..<Version(1, .max, .max)), | ||
] | ||
dependencies: { | ||
var deps: [Package.Dependency] = [ | ||
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 2, 1)..<Version(3, .max, .max)), | ||
.Package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", versions: Version(1, 1, 0)..<Version(1, .max, .max)), | ||
] | ||
if isSwiftPackagerManagerTest { | ||
deps += [ | ||
.Package(url: "https://github.com/Quick/Quick.git", majorVersion: 1, minor: 1), | ||
.Package(url: "https://github.com/Quick/Nimble.git", majorVersion: 6, minor: 1), | ||
] | ||
} | ||
return deps | ||
}() | ||
) |