-
Notifications
You must be signed in to change notification settings - Fork 233
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 #255 from CodaFi/forward-march
Swift 2.0 Support
- Loading branch information
Showing
91 changed files
with
4,338 additions
and
3,089 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 |
---|---|---|
|
@@ -16,3 +16,8 @@ DerivedData | |
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
*.xcscmblueprint | ||
*.resolved | ||
Carthage/Build | ||
Carthage/Checkouts | ||
|
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,10 +1,12 @@ | ||
language: objective-c | ||
osx_image: beta-xcode6.3 | ||
osx_image: xcode7 | ||
|
||
install: | ||
before_install: | ||
- gem install xcpretty-travis-formatter --no-rdoc --no-ri --no-document --quiet | ||
|
||
install: | ||
- git submodule update -i --recursive | ||
|
||
script: | ||
- xctool -project Swiftz.xcodeproj -scheme Swiftz -sdk macosx ONLY_ACTIVE_ARCH=NO clean build test | ||
- xctool -project Swiftz.xcodeproj -scheme Swiftz-iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO clean build test | ||
|
||
- set -o pipefail && xcodebuild -project Swiftz.xcodeproj -scheme Swiftz -sdk macosx ONLY_ACTIVE_ARCH=NO clean build test | xcpretty -c -f `xcpretty-travis-formatter` | ||
- set -o pipefail && xcodebuild -project Swiftz.xcodeproj -scheme Swiftz-iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO clean build test | xcpretty -c -f `xcpretty-travis-formatter` |
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,4 @@ | ||
github "typelift/Swiftx" | ||
github "typelift/SwiftCheck" | ||
github "typelift/Operadics" | ||
|
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,3 @@ | ||
github "typelift/SwiftCheck" "v0.2.6" | ||
github "typelift/Swiftx" "v0.2.1" | ||
github "typelift/Operadics" "0.1.4" | ||
github "typelift/SwiftCheck" "v0.3.1" | ||
github "typelift/Swiftx" "v0.3.0" |
Submodule SwiftCheck
updated
46 files
Submodule Swiftx
updated
28 files
+1 −0 | .gitignore | |
+6 −0 | .gitmodules | |
+12 −0 | .travis.yml | |
+0 −0 | Cartfile | |
+3 −0 | Cartfile.private | |
+2 −0 | Cartfile.resolved | |
+1 −0 | Carthage/Checkouts/Operadics | |
+1 −0 | Carthage/Checkouts/SwiftCheck | |
+171 −41 | Swiftx.xcodeproj/project.pbxproj | |
+8 −5 | Swiftx.xcodeproj/xcshareddata/xcschemes/Swiftx-iOS.xcscheme | |
+4 −1 | Swiftx.xcodeproj/xcshareddata/xcschemes/Swiftx.xcscheme | |
+4 −1 | Swiftx.xcodeproj/xcshareddata/xcschemes/SwiftxTests.xcscheme | |
+14 −27 | Swiftx/Array.swift | |
+0 −37 | Swiftx/Box.swift | |
+147 −0 | Swiftx/Combinators.swift | |
+60 −71 | Swiftx/Either.swift | |
+1 −5 | Swiftx/Error.swift | |
+0 −87 | Swiftx/Functions.swift | |
+1 −1 | Swiftx/Nothing.swift | |
+0 −62 | Swiftx/Operators.swift | |
+18 −30 | Swiftx/Optional.swift | |
+0 −222 | Swiftx/Result.swift | |
+135 −145 | Swiftx/Sections.swift | |
+0 −10 | Swiftx/Swiftx.h | |
+84 −0 | SwiftxTests/EitherSpec.swift | |
+1 −1 | SwiftxTests/Info.plist | |
+164 −0 | SwiftxTests/SectionSpec.swift | |
+0 −182 | SwiftxTests/SectionTests.swift |
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.