From 05dd60b4f56f50f7b25184c36f5f6163d09c3043 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Ko=CC=88hnke?= Date: Tue, 20 Sep 2016 20:50:11 +0200 Subject: [PATCH] Trying to fix Travis CI --- Cartfile | 2 +- README.md | 11 ++++++++++- Scripts/test-framework.sh | 2 +- WKZombie.xcodeproj/project.pbxproj | 4 ++-- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Cartfile b/Cartfile index 4bfd9b1..6e9d431 100644 --- a/Cartfile +++ b/Cartfile @@ -1 +1 @@ -github "mkoehnke/hpple" "0.2.1" +github "mkoehnke/hpple" "0.2.2" diff --git a/README.md b/README.md index f831744..58769dd 100644 --- a/README.md +++ b/README.md @@ -33,10 +33,19 @@ When using a common web-browser (e.g. Mobile Safari) on iOS, you would typically #### Automation with WKZombie -The same navigation process can be reproduced **automatically** within an iOS/OSX app linking WKZombie *Actions*. In addition, it is now possible to manipulate or display this data in a native way with *UITextfield*, *UIButton* and a *UITableView*. **Take a look at the demo project to see how to use it.** +The same navigation process can be reproduced **automatically** within an iOS/OSX app linking WKZombie *Actions*. In addition, it is now possible to manipulate or display this data in a native way with *UITextfield*, *UIButton* and a *UITableView*. +**NOTE:** Take a look at the **iOS/OSX** demos in the `Example` directory to see how to use it. For a **Command Line** demo, run the following commands inside the `WKZombie` root folder: + +```ogdl +$ swift build -Xcc -I/usr/include/libxml2 -Xlinker -lxml2 + +$ .build/debug/Example +``` + + # Getting Started The best way to get started is to look at the sample project. Just run the following commands in your shell and you're good to go: diff --git a/Scripts/test-framework.sh b/Scripts/test-framework.sh index d15c595..5844d44 100755 --- a/Scripts/test-framework.sh +++ b/Scripts/test-framework.sh @@ -1,4 +1,4 @@ #!/bin/bash bash Scripts/setup-framework.sh -xcodebuild -workspace WKZombie.xcworkspace -scheme WKZombie -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6s,OS=10.0' build test +xcodebuild -workspace WKZombie.xcworkspace -scheme WKZombie -sdk iphonesimulator10.0 -destination 'platform=iOS Simulator,name=iPhone 6s,OS=10.0' build test diff --git a/WKZombie.xcodeproj/project.pbxproj b/WKZombie.xcodeproj/project.pbxproj index 08dceb4..931a776 100644 --- a/WKZombie.xcodeproj/project.pbxproj +++ b/WKZombie.xcodeproj/project.pbxproj @@ -651,7 +651,7 @@ BF455DAB1CEFBF99006D97D0 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; DEVELOPMENT_TEAM = ""; INFOPLIST_FILE = "$(SRCROOT)/Resources/Tests/HostApplication/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 9.1; @@ -666,7 +666,7 @@ BF455DAC1CEFBF99006D97D0 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; DEVELOPMENT_TEAM = ""; INFOPLIST_FILE = "$(SRCROOT)/Resources/Tests/HostApplication/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 9.1;