-
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'deploy/1.4.2' into productive
- Loading branch information
Showing
21 changed files
with
836 additions
and
275 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
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 @@ | ||
# A pure Swift library for creating command-line interfaces | ||
github "jatoben/CommandLine" | ||
github "jatoben/CommandLine" "master" | ||
|
||
# A simple Swift API for Microsoft Translator | ||
github "Dschee/Polyglot" "master" |
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 "jatoben/CommandLine" "v2.0.0" | ||
github "jatoben/CommandLine" "43fc514e0341f2b4dbb4ff0538381d35bf9ca9a4" | ||
github "Dschee/Polyglot" "1f5f008c0fa44f37567de170c8f85c22f03612d0" |
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,6 +1,7 @@ | ||
# Xcode | ||
# | ||
build/ | ||
.build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
|
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,18 @@ | ||
language: objective-c # this is a lie | ||
xcode_project: CommandLine.xcodeproj | ||
xcode_scheme: CommandLine | ||
script: xcodebuild -scheme CommandLine test | ||
osx_image: xcode7 | ||
matrix: | ||
include: | ||
- os: osx | ||
language: objective-c # this is a lie | ||
xcode_project: CommandLine.xcodeproj | ||
xcode_scheme: CommandLine | ||
script: xcodebuild -scheme CommandLine test | ||
osx_image: xcode7.2 | ||
- os: linux | ||
sudo: required | ||
dist: trusty | ||
before_install: | ||
- sudo apt-get install -y libicu-dev | ||
- ./install-linux-swift.sh | ||
- export PATH="/swift/usr/bin:${PATH}" | ||
script: | ||
- swift build -v | ||
- .build/debug/CommandLineTests |
Oops, something went wrong.