Skip to content

Commit d240a24

Browse files
committed
Tweaks
1 parent c0b6119 commit d240a24

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

README.md

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ios-sim-portable
22
================
33

4-
The ios-sim-portable is a command-line utility written in Node.js that launches an iOS application (.app) on the iOS Simulator.
4+
The ios-sim-portable is a command-line utility written in Node.js that launches an iOS application file (.app) in the Xcode iOS Simulator.
55

66
* [System Requirements](#system-requirements)
77
* [Installation](#installation)
@@ -15,7 +15,7 @@ System Requirements
1515
* OS X 10.9.4 or later
1616
* Node.js 0.10.31 or later
1717
* Xcode 5.0 or later
18-
* Command Line Tools for Xcode, compatible with your version of Xcode and your OS X
18+
* Command Line Tools for Xcode, compatible with your versions of Xcode and OS X
1919
* iOS 7.0 SDK or later
2020

2121
[Back to Top][1]
@@ -25,19 +25,19 @@ Installation
2525

2626
To install ios-sim-portable, run the following command.
2727

28-
```
28+
```bash
2929
npm i -g ios-sim-portable
3030
```
3131

3232
To update ios-sim-portable, run the following command.
3333

34-
```
34+
```bash
3535
npm update -g ios-sim-portable
3636
```
3737

3838
To uninstall ios-sim-portable, run the following command.
3939

40-
```
40+
```bash
4141
npm uninstall -g ios-sim-portable
4242
```
4343

@@ -46,17 +46,22 @@ npm uninstall -g ios-sim-portable
4646
Usage
4747
=====
4848

49-
```
49+
```bash
5050
$ ios-sim-portable <command> [command parameters] [--command <options>]
5151
$ isim <command> [command parameters] [--command <options>]
52-
```
5352

54-
Command | Syntax | Description | Options | Example
55-
--------|--------|---------| ------------|--------
56-
**help** | `help <command>` | Shows additional information about the commands in this list. | &nbsp; | `$ ios-sim help launch`
57-
**launch** | `launch <full path> [--exit] [--device]` | Launches the application (.app) at the specified path in the iOS Simulator. | *--exit* - If set, releases the console after the iOS Simulator starts.<br/>*--device* - If set, launches the app in the selected device. Otherwise, launches the app in the default device. To list the available devices, run `$ isim device-types`<br/>*--help* - If set, shows information about the current command. | `$ ios-sim launch /Volumes/HDD/Projects/my-project.app --device iPad-Air --exit`
58-
**device-types** | `device-types` | Lists the available device types for the current Xcode version. | *--help* - If set, shows information about the current command. | `$ isim device-types`
59-
**sdks** | `$ ios-sim sdks` | Lists the available iOS SDK versions. | *--help* - If set, shows information about the current command. | `$ ios-sim sdks`
53+
General commands:
54+
help <command> Shows additional information about the commands in this list.
55+
launch <full path> Launches the application at the specified path in the iOS Simulator.
56+
device-types Lists the available device types for the current Xcode version.
57+
sdks Lists the available iOS SDK versions.
58+
59+
For more information about each command, run
60+
$ isim help <command>
61+
or
62+
$ isim <command> --help
63+
64+
```
6065

6166
[Back to Top][1]
6267

@@ -67,7 +72,7 @@ This software is licensed under the Apache 2.0 license, quoted <a href="LICENSE"
6772

6873
[Back to Top][1]
6974

70-
Related Packages
75+
Related npm Packages
7176
================
7277

7378
Both the Telerik AppBuilder CLI (`appbuilder`) and the NativeScript CLI (`nativescript`) rely on ios-sim-portable to load projects in the iOS Simulator.

0 commit comments

Comments
 (0)