Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
WaxSim
------

WaxSim is a command-line tool which launches an iOS simulator-targeted
application in the iOS simulator.

Installation
------------

You should be able to simply run `xcodebuild` from a clone of this repository
to build and install the `waxsim` binary into `~/bin/`. The `~/bin/` directory
should exist first.

Usage
-----

Listing the install SDKs:

waxsim -a

Running a program:

waxsim -s <sdk-version> <path-to-app>


Output
------

WaxSim tries to redirect the app's console output to STDOUT; however, the
mechanism provided only works for files which have names. This unfortunately
excludes normal (anoynymous) UNIX pipes. So this does not work:

waxsim -s 4.3 foo/bar.app |grep Hello

But you can do this:

waxsim -s 4.3 foo/bar.app >/tmp/output.txt && grep Hello /tmp/output.txt