Skip to content

Commit b03f5b7

Browse files
committed
Merge pull request #35 from Carthage/swift2
Swift 2 redux
2 parents 0865b94 + 84790d9 commit b03f5b7

File tree

18 files changed

+164
-96
lines changed

18 files changed

+164
-96
lines changed

.gitignore

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Xcode
22
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## Build generated
36
build/
7+
DerivedData
8+
9+
## Various settings
410
*.pbxuser
511
!default.pbxuser
612
*.mode1v3
@@ -10,12 +16,16 @@ build/
1016
*.perspectivev3
1117
!default.perspectivev3
1218
xcuserdata
19+
20+
## Other
1321
*.xccheckout
1422
*.moved-aside
15-
DerivedData
23+
*.xcuserstate
24+
*.xcscmblueprint
25+
26+
## Obj-C/Swift specific
1627
*.hmap
1728
*.ipa
18-
*.xcuserstate
1929

2030
# CocoaPods
2131
#
@@ -24,3 +34,10 @@ DerivedData
2434
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
2535
#
2636
# Pods/
37+
38+
# Carthage
39+
#
40+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
41+
# Carthage/Checkouts
42+
43+
Carthage/Build

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
[submodule "Carthage.checkout/ReactiveCocoa"]
1111
path = Carthage/Checkouts/ReactiveCocoa
1212
url = https://github.com/ReactiveCocoa/ReactiveCocoa.git
13-
[submodule "Carthage/Checkouts/Box"]
14-
path = Carthage/Checkouts/Box
15-
url = https://github.com/robrix/Box.git
1613
[submodule "Carthage/Checkouts/Result"]
1714
path = Carthage/Checkouts/Result
1815
url = https://github.com/antitypical/Result.git

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: objective-c
2-
osx_image: xcode6.4
2+
osx_image: xcode7
33
xcode_workspace: ReactiveTask.xcworkspace
44
xcode_scheme: ReactiveTask
55
script: script/cibuild

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ReactiveCocoa/ReactiveCocoa" ~> 3.0
1+
github "ReactiveCocoa/ReactiveCocoa" "v4.0-alpha.1"

Cartfile.private

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "Quick/Quick" ~> 0.3
2-
github "Quick/Nimble" ~> 0.4
3-
github "jspahrsummers/xcconfigs" ~> 0.8
1+
github "Quick/Quick" "4c19d1257813c44df9c3c56b296b2b11ca40d4a9"
2+
github "Quick/Nimble" "v2.0.0-rc.3"
3+
github "jspahrsummers/xcconfigs" "ec5753493605deed7358dec5f9260f503d3ed650"

Cartfile.resolved

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
github "robrix/Box" "1.2.2"
2-
github "Quick/Nimble" "v0.4.2"
3-
github "Quick/Quick" "v0.3.1"
4-
github "jspahrsummers/xcconfigs" "0.8.1"
5-
github "antitypical/Result" "0.4.4"
6-
github "ReactiveCocoa/ReactiveCocoa" "v3.0.0"
1+
github "Quick/Nimble" "v2.0.0-rc.3"
2+
github "Quick/Quick" "4c19d1257813c44df9c3c56b296b2b11ca40d4a9"
3+
github "antitypical/Result" "76f9a972ed61ff872b731460bc610c8acbfae58c"
4+
github "jspahrsummers/xcconfigs" "ec5753493605deed7358dec5f9260f503d3ed650"
5+
github "ReactiveCocoa/ReactiveCocoa" "v4.0-alpha.1"

Carthage/Checkouts/Box

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

Carthage/Checkouts/Nimble

Submodule Nimble updated 72 files

Carthage/Checkouts/Quick

Submodule Quick updated 57 files

Carthage/Checkouts/ReactiveCocoa

Submodule ReactiveCocoa updated 70 files

0 commit comments

Comments
 (0)