Skip to content

Commit 90c5757

Browse files
authored
Merge pull request #84 from mdiep/swift-4
Migrate to Swift 4's Decodable APIs
2 parents 3a0ac44 + 11b759b commit 90c5757

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+781
-1081
lines changed

.gitmodules

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
[submodule "Carthage/Checkouts/Result"]
22
path = Carthage/Checkouts/Result
33
url = https://github.com/antitypical/Result.git
4-
[submodule "Carthage/Checkouts/Argo"]
5-
path = Carthage/Checkouts/Argo
6-
url = https://github.com/thoughtbot/Argo.git
7-
[submodule "Carthage/Checkouts/Curry"]
8-
path = Carthage/Checkouts/Curry
9-
url = https://github.com/thoughtbot/Curry.git
104
[submodule "Carthage/Checkouts/ReactiveSwift"]
115
path = Carthage/Checkouts/ReactiveSwift
126
url = https://github.com/ReactiveCocoa/ReactiveSwift.git
13-
[submodule "Carthage/Checkouts/Runes"]
14-
path = Carthage/Checkouts/Runes
15-
url = https://github.com/thoughtbot/Runes.git

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1
1+
4.0

.swiftlint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
included:
2+
- Sources
3+
whitelist_rules:
4+
- trailing_closure

.travis.yml

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: objective-c
2-
osx_image: xcode8.3
2+
osx_image: xcode9
33
branches:
44
only:
55
- master
@@ -9,33 +9,13 @@ script: script/cibuild "$TRAVIS_XCODE_WORKSPACE" "$TRAVIS_XCODE_SCHEME" "$XCODE_
99
xcode_workspace: Tentacle.xcworkspace
1010
matrix:
1111
include:
12-
- osx_image: xcode8.3
13-
xcode_scheme: Tentacle-OSX
12+
- xcode_scheme: Tentacle-OSX
1413
env: XCODE_ACTION="build-for-testing test-without-building"
15-
- osx_image: xcode8.3
16-
xcode_scheme: Tentacle-iOS
14+
- xcode_scheme: Tentacle-iOS
1715
env: XCODE_ACTION="build-for-testing test-without-building"
18-
- osx_image: xcode8.3
19-
xcode_scheme: update-test-fixtures
16+
- xcode_scheme: update-test-fixtures
2017
env: XCODE_ACTION=build
21-
- osx_image: xcode8.3
22-
before_script: true
23-
script:
24-
- swift build
25-
- swift test
26-
env:
27-
- JOB=SWIFTPM_DARWIN
28-
- osx_image: xcode9
29-
xcode_scheme: Tentacle-OSX
30-
env: XCODE_ACTION="build-for-testing test-without-building"
31-
- osx_image: xcode9
32-
xcode_scheme: Tentacle-iOS
33-
env: XCODE_ACTION="build-for-testing test-without-building"
34-
- osx_image: xcode9
35-
xcode_scheme: update-test-fixtures
36-
env: XCODE_ACTION=build
37-
- osx_image: xcode9
38-
before_script: true
18+
- before_script: true
3919
script:
4020
- swift build
4121
- swift test

Cartfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
github "ReactiveCocoa/ReactiveSwift" ~> 2.0
2-
github "thoughtbot/Argo" ~> 4.1.2
3-
github "thoughtbot/Curry" ~> 3.0

Cartfile.resolved

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
github "ReactiveCocoa/ReactiveSwift" "2.0.0"
1+
github "ReactiveCocoa/ReactiveSwift" "2.0.1"
22
github "antitypical/Result" "3.2.3"
3-
github "thoughtbot/Argo" "v4.1.2"
4-
github "thoughtbot/Curry" "v3.0.0"
5-
github "thoughtbot/Runes" "v4.0.1"

Carthage/Checkouts/Argo

Lines changed: 0 additions & 1 deletion
This file was deleted.

Carthage/Checkouts/Curry

Lines changed: 0 additions & 1 deletion
This file was deleted.

Carthage/Checkouts/Runes

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)