-
Notifications
You must be signed in to change notification settings - Fork 24
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 #84 from mdiep/swift-4
Migrate to Swift 4's Decodable APIs
- Loading branch information
Showing
58 changed files
with
781 additions
and
1,081 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
[submodule "Carthage/Checkouts/Result"] | ||
path = Carthage/Checkouts/Result | ||
url = https://github.com/antitypical/Result.git | ||
[submodule "Carthage/Checkouts/Argo"] | ||
path = Carthage/Checkouts/Argo | ||
url = https://github.com/thoughtbot/Argo.git | ||
[submodule "Carthage/Checkouts/Curry"] | ||
path = Carthage/Checkouts/Curry | ||
url = https://github.com/thoughtbot/Curry.git | ||
[submodule "Carthage/Checkouts/ReactiveSwift"] | ||
path = Carthage/Checkouts/ReactiveSwift | ||
url = https://github.com/ReactiveCocoa/ReactiveSwift.git | ||
[submodule "Carthage/Checkouts/Runes"] | ||
path = Carthage/Checkouts/Runes | ||
url = https://github.com/thoughtbot/Runes.git |
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.1 | ||
4.0 |
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,4 @@ | ||
included: | ||
- Sources | ||
whitelist_rules: | ||
- trailing_closure |
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,3 +1 @@ | ||
github "ReactiveCocoa/ReactiveSwift" ~> 2.0 | ||
github "thoughtbot/Argo" ~> 4.1.2 | ||
github "thoughtbot/Curry" ~> 3.0 |
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,2 @@ | ||
github "ReactiveCocoa/ReactiveSwift" "2.0.0" | ||
github "ReactiveCocoa/ReactiveSwift" "2.0.1" | ||
github "antitypical/Result" "3.2.3" | ||
github "thoughtbot/Argo" "v4.1.2" | ||
github "thoughtbot/Curry" "v3.0.0" | ||
github "thoughtbot/Runes" "v4.0.1" |
Submodule Argo
deleted from
203daf
Submodule Curry
deleted from
c9f1a3
Submodule ReactiveSwift
updated
26 files
Submodule Runes
deleted from
727fcf
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "ReactiveSwift", | ||
"repositoryURL": "https://github.com/ReactiveCocoa/ReactiveSwift.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "b9d5b350a446b85704396ce332a1f9e4960cfc6b", | ||
"version": "2.0.1" | ||
} | ||
}, | ||
{ | ||
"package": "Result", | ||
"repositoryURL": "https://github.com/antitypical/Result.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "7477584259bfce2560a19e06ad9f71db441fff11", | ||
"version": "3.2.4" | ||
} | ||
} | ||
] | ||
}, | ||
"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,10 +1,17 @@ | ||
// swift-tools-version:4.0 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Tentacle", | ||
products: [ | ||
.library(name: "Tentacle", targets: ["Tentacle"]), | ||
], | ||
dependencies: [ | ||
.Package(url: "https://github.com/thoughtbot/Argo.git", versions: Version(4, 1, 2)..<Version(4, .max, .max)), | ||
.Package(url: "https://github.com/thoughtbot/Curry.git", majorVersion: 3), | ||
.Package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", majorVersion: 2), | ||
] | ||
.package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", from: "2.0.0"), | ||
], | ||
targets: [ | ||
.target(name: "Tentacle", dependencies: ["ReactiveSwift"]), | ||
.testTarget(name: "TentacleTests", dependencies: ["Tentacle"]), | ||
], | ||
swiftLanguageVersions: [4] | ||
) |
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
Oops, something went wrong.