mirror of
https://github.com/appium/appium.git
synced 2026-05-21 11:28:47 -05:00
make readme more friendly and make sure we publish appium.io to gh-pages
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
submodules/appium.io
|
||||
submodules/ApiDemos
|
||||
submodules/selendroid/selendroid-server/target
|
||||
|
||||
@@ -60,7 +60,7 @@ Option 2: Run Appium from the command line using Node:
|
||||
|
||||
Example Tests: [Node.js](https://github.com/appium/appium/tree/master/sample-code/examples/node) | [Python](https://github.com/appium/appium/tree/master/sample-code/examples/python) | [PHP](https://github.com/appium/appium/tree/master/sample-code/examples/php) | [Ruby](https://github.com/appium/appium/tree/master/sample-code/examples/ruby) | [Java](https://github.com/appium/appium/tree/master/sample-code/examples/java)
|
||||
|
||||
More Detailed Information
|
||||
Write Tests for Appium
|
||||
-------------------
|
||||
We support a sub-set of the [Selenium WebDriver JSON Wire Protocol](https://github.com/appium/appium/wiki/JSON-Wire-Protocol:-Supported-Methods).
|
||||
|
||||
@@ -84,7 +84,7 @@ We support Android and iOS platforms side-by-side:
|
||||
|
||||
- - -
|
||||
|
||||
Developing on Appium
|
||||
Hacking with Appium
|
||||
------------
|
||||
Install [node.js](http://nodejs.org/) (includes npm, the node.js package manager).
|
||||
The recommended way to install node is `brew install node`. Node [installed by
|
||||
@@ -105,7 +105,7 @@ if you installed node.js via Homebrew). The third command installs all app
|
||||
dependencies, builds supporting binaries and test apps. `reset.sh` is also the
|
||||
recommended command to run after pulling changes from master.
|
||||
|
||||
Developing on Appium (iOS)
|
||||
Hacking with Appium (iOS)
|
||||
--------------
|
||||
|
||||
(First, have a look at [setting up your system for Appium iOS support](https://github.com/appium/appium/blob/master/docs/system-setup.md#ios).)
|
||||
@@ -126,7 +126,7 @@ At this point, you can simply run:
|
||||
|
||||
./reset.sh --ios
|
||||
|
||||
Developing on Appium (Android)
|
||||
Hacking with Appium (Android)
|
||||
----------------
|
||||
|
||||
(First, have a look at [setting up your system for Appium Android support](https://github.com/appium/appium/blob/master/docs/system-setup.md#android).)
|
||||
|
||||
+5
-1
@@ -411,7 +411,11 @@ module.exports.generateAppiumIo = function(grunt, cb) {
|
||||
grunt.log.write("Pushing changes to appium.io...");
|
||||
var cmd = 'git commit -am "updating getting-started via grunt" && ' +
|
||||
'git pull --rebase origin master && ' +
|
||||
'git push origin master';
|
||||
'git push origin master && ' +
|
||||
'git checkout gh-pages && ' +
|
||||
'git merge master && ' +
|
||||
'git push origin gh-pages && ' +
|
||||
'git checkout master';
|
||||
exec(cmd, {cwd: submod}, function(err, stdout, stderr) {
|
||||
if (err) {
|
||||
console.log(stdout);
|
||||
|
||||
+1
-1
Submodule submodules/appium.io updated: 32111c0c56...c1b550d0c5
Reference in New Issue
Block a user