Skip to content

Commit

Permalink
Trying to fix Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Köhnke committed Sep 20, 2016
1 parent 7e52260 commit 05dd60b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "mkoehnke/hpple" "0.2.1"
github "mkoehnke/hpple" "0.2.2"
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*.

<img src="https://raw.githubusercontent.com/mkoehnke/WKZombie/master/Documentation/Resources/WKZombie-Simulator-Demo.gif" />

**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 <appleid> <password>
```


# 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:
Expand Down
2 changes: 1 addition & 1 deletion Scripts/test-framework.sh
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions WKZombie.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 05dd60b

Please sign in to comment.