web_console 0.5.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +2 -0
- data/LICENSE-2.0.txt +202 -0
- data/Rakefile +155 -0
- data/bin/rubyweb +51 -0
- data/ios_v_android.md +58 -0
- data/lib/start.rb +93 -0
- data/lib/web_console.rb +57 -0
- data/lib/web_console/version.rb +7 -0
- data/osx.md +274 -0
- data/osx_install.rake +135 -0
- data/readme.md +86 -0
- data/release_notes.md +352 -0
- data/web_console.gemspec +34 -0
- metadata +130 -0
data/readme.md
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
#### Ruby Console for Appium [![Gem Version](https://badge.fury.io/rb/appium_console.png)](http://rubygems.org/gems/appium_console)[![Dependency Status](https://gemnasium.com/appium/ruby_console.png)](https://gemnasium.com/appium/ruby_console)
|
2
|
+
|
3
|
+
- [appium_console on RubyGems](https://rubygems.org/gems/appium_console)
|
4
|
+
|
5
|
+
#### Update system
|
6
|
+
|
7
|
+
Paste the following into Terminal. If you're not using [RVM](https://rvm.io/), you may have to prefix gem commands with sudo.
|
8
|
+
|
9
|
+
```bash
|
10
|
+
gem update --system ;\
|
11
|
+
gem update bundler
|
12
|
+
```
|
13
|
+
|
14
|
+
#### Install / Upgrade Ruby Console
|
15
|
+
|
16
|
+
```bash
|
17
|
+
gem uninstall -aIx appium_lib ;\
|
18
|
+
gem uninstall -aIx appium_console ;\
|
19
|
+
gem install --no-rdoc --no-ri appium_console
|
20
|
+
```
|
21
|
+
|
22
|
+
If `appium_console` is already installed, run `arc upgrade` to automatically update.
|
23
|
+
|
24
|
+
#### Update Appium
|
25
|
+
|
26
|
+
To update `appium` from source (assuming node.js requires sudo):
|
27
|
+
|
28
|
+
Clone appium if you haven't already.
|
29
|
+
|
30
|
+
`git clone git@github.com:appium/appium.git`
|
31
|
+
|
32
|
+
then in the `appium` folder:
|
33
|
+
|
34
|
+
```bash
|
35
|
+
git pull ;\
|
36
|
+
sudo ./reset.sh ; ./reset.sh
|
37
|
+
```
|
38
|
+
|
39
|
+
You should uninstall the `ap` gem because it breaks awesome_print.
|
40
|
+
|
41
|
+
`gem uninstall -aIx ap`
|
42
|
+
|
43
|
+
#### Run
|
44
|
+
|
45
|
+
The `arc` command starts Appium Ruby Console.
|
46
|
+
|
47
|
+
- `arc version` prints the current version of appium console and appium lib.
|
48
|
+
- `arc upgrade` upgrades appium_console and appium_lib.
|
49
|
+
- `arc setup android` creates `appium.txt` for android in the current working dir.
|
50
|
+
- `arc setup ios` creates `appium.txt` for ios in the current working dir.
|
51
|
+
|
52
|
+
Ruby 1.9.3 and Appium from GitHub are required. Run Appium from source.
|
53
|
+
|
54
|
+
`node server.js -V --fast-reset`
|
55
|
+
|
56
|
+
For OS X, export the path to your .app bundle `MyApp.app` or zipped app bundle `MyApp.app.zip`
|
57
|
+
|
58
|
+
`export APP_PATH="../MyApp.app"`
|
59
|
+
|
60
|
+
For Android:
|
61
|
+
|
62
|
+
`APP_ACTIVITY` is the activity to start the app with.
|
63
|
+
`APP_WAIT_ACTIVITY` is the activity to wait for before considering the app as having been started.
|
64
|
+
|
65
|
+
```
|
66
|
+
export APP_PATH="/path/to/my.apk" ;\
|
67
|
+
export APP_PACKAGE="com.my.Pkg" ;\
|
68
|
+
export APP_ACTIVITY="StartActivity" ;\
|
69
|
+
export APP_WAIT_ACTIVITY="SplashActivity"
|
70
|
+
```
|
71
|
+
|
72
|
+
You may want to define the environment variables in `~/.bash_profile` so you don't have to export them again.
|
73
|
+
|
74
|
+
#### Reset Appium
|
75
|
+
|
76
|
+
Reset Appium after pulling the latest changes.
|
77
|
+
|
78
|
+
`$ ./reset.sh`
|
79
|
+
|
80
|
+
#### Documentation
|
81
|
+
|
82
|
+
- [Installing Appium on OS X](https://github.com/appium/ruby_console/blob/master/osx.md)
|
83
|
+
- [Overview](https://github.com/appium/ruby_lib/blob/master/docs/docs.md)
|
84
|
+
- [Android methods](https://github.com/appium/ruby_lib/blob/master/docs/android_docs.md)
|
85
|
+
- [iOS methods](https://github.com/appium/ruby_lib/blob/master/docs/ios_docs.md)
|
86
|
+
- [Appium docs](https://github.com/appium/appium/tree/master/docs)
|
data/release_notes.md
ADDED
@@ -0,0 +1,352 @@
|
|
1
|
+
#### v0.5.7 2013-11-25
|
2
|
+
|
3
|
+
- [c0877e8](https://github.com/appium/ruby_console/commit/c0877e8b948da670d9df3a8e6c757b2dcc476911) Release 0.5.7
|
4
|
+
- [4bf603f](https://github.com/appium/ruby_console/commit/4bf603f911058146b88d6c4330e1d9121cbf9a87) Rescue load errors
|
5
|
+
- [027af76](https://github.com/appium/ruby_console/commit/027af763e8563c1b91dd195e978b7410ece9ec76) Release 0.5.6
|
6
|
+
|
7
|
+
|
8
|
+
#### v0.5.6 2013-11-18
|
9
|
+
|
10
|
+
- [ce14efa](https://github.com/appium/ruby_console/commit/ce14efa1bb139a2f8a8f391d28588376757739bc) Release 0.5.6
|
11
|
+
- [e6ee1f5](https://github.com/appium/ruby_console/commit/e6ee1f5704ceb5358997af77dc43c4bc401e204e) Add "reload" command
|
12
|
+
- [877a42b](https://github.com/appium/ruby_console/commit/877a42b728ac8d3d7093ce92feab69010701893a) Update ios_v_android.md
|
13
|
+
- [86eed78](https://github.com/appium/ruby_console/commit/86eed78ebcb4ab06bf148e629aad1f4de35c3309) Update osx.md
|
14
|
+
- [c32fa78](https://github.com/appium/ruby_console/commit/c32fa7859afa659dce46ec61494544b3a9b9f2b9) Add note about iOS duplicate elements
|
15
|
+
- [cdd23c7](https://github.com/appium/ruby_console/commit/cdd23c7e8a21e83f19763796b33a17b163de1e43) Update hotfix section
|
16
|
+
- [a4800ab](https://github.com/appium/ruby_console/commit/a4800abc1e366fd31c1cfa5fddd2f00ae6253fe6) Merge pull request #32 from bkone/patch-2
|
17
|
+
- [2e24615](https://github.com/appium/ruby_console/commit/2e24615366622cd658a0516850d07dda45ab7428) Update osx.md
|
18
|
+
- [bb90e04](https://github.com/appium/ruby_console/commit/bb90e048b9835f6ee43ec43ee537ca2a5691aea5) Merge pull request #31 from bkone/patch-1
|
19
|
+
- [c85b39d](https://github.com/appium/ruby_console/commit/c85b39d375b8dce6e97ade8701f8ab57d48e5833) install_osx.rake to osx_install.rake
|
20
|
+
- [ff59f4d](https://github.com/appium/ruby_console/commit/ff59f4dba3557a69867af5bb53008ed2d0fb15dd) Add rvm fix for OS X 10.9
|
21
|
+
- [add328a](https://github.com/appium/ruby_console/commit/add328a34506915f9b453722730d4f7217504658) Clarify maven version
|
22
|
+
- [db263d3](https://github.com/appium/ruby_console/commit/db263d36fac3ef673e363cf36d93d5bb8bab03db) Clarify Xcode versions
|
23
|
+
- [7cdd5de](https://github.com/appium/ruby_console/commit/7cdd5dead03fc08eb495e9118c337fe465b7d66e) Update osx.md
|
24
|
+
- [869e4a4](https://github.com/appium/ruby_console/commit/869e4a4454d115a8b171e92b61b420e7e4c0152b) HAXM on OS X 10.9
|
25
|
+
- [85f9f39](https://github.com/appium/ruby_console/commit/85f9f39eadf12b993d4389759bdcd863aaac4fbc) Add Maven OS X 10.9 doc
|
26
|
+
- [793d780](https://github.com/appium/ruby_console/commit/793d7805705e5709c990714e545013a16189e743) Update osx.md
|
27
|
+
- [78fbc94](https://github.com/appium/ruby_console/commit/78fbc9473b009af39043f89b50fe34105dad0870) Merge pull request #30 from claybridges/clay-rake-install
|
28
|
+
- [604a385](https://github.com/appium/ruby_console/commit/604a3857a4612c5db7c0c2c157a51e513235f385) Add osx_install.rake, and associated changes
|
29
|
+
- [0efa857](https://github.com/appium/ruby_console/commit/0efa857b561edf7370e27a165f9fb8b2dc68dff7) Recommend RubyGems >= 2.1.5
|
30
|
+
- [7ba2e04](https://github.com/appium/ruby_console/commit/7ba2e042b62b1c8c6658f390b0db66b356791a33) Add flaky gem to osx.md
|
31
|
+
- [0574a34](https://github.com/appium/ruby_console/commit/0574a3400b9f489838ace4894fde787a3361a88e) Update SSL issue docs
|
32
|
+
- [ccb94ce](https://github.com/appium/ruby_console/commit/ccb94cebaceccdc067e646be8c6016803afd1ffe) Add SSL issue fix
|
33
|
+
- [594c8c3](https://github.com/appium/ruby_console/commit/594c8c3100576f0168874e70bab551ae6b226a52) Use quotes
|
34
|
+
- [763e6d4](https://github.com/appium/ruby_console/commit/763e6d48296459044b112fcfe1fb3fc3ae9dc0e4) Improve troubleshooting
|
35
|
+
- [f60791e](https://github.com/appium/ruby_console/commit/f60791eca5166c7925f4dc8f35663142fbf5414d) Update osx.md
|
36
|
+
- [e79b668](https://github.com/appium/ruby_console/commit/e79b6684e5321c4b393fafe0892bad7b72651b3f) Update osx.md
|
37
|
+
- [3e2a8ae](https://github.com/appium/ruby_console/commit/3e2a8aece693227a83ab79b61c84bd400005a31a) Update osx.md
|
38
|
+
- [21b0240](https://github.com/appium/ruby_console/commit/21b0240194a03bc4f4a33abbfc0063e1af19d48f) Update avd settings to API 18
|
39
|
+
- [5390c80](https://github.com/appium/ruby_console/commit/5390c80febeb15ecb0d9b667694181850065a7c4) Update osx.md
|
40
|
+
- [05e312c](https://github.com/appium/ruby_console/commit/05e312c3918686fe5e9a9769e3f1571623915dc7) Add helper bash methods for launching Appium
|
41
|
+
- [afcb37f](https://github.com/appium/ruby_console/commit/afcb37f1b9951ff2caa41f2a4c802ee2b7ebcf16) Update to API 18
|
42
|
+
|
43
|
+
|
44
|
+
#### v0.5.5 2013-08-23
|
45
|
+
|
46
|
+
- [e048325](https://github.com/appium/ruby_console/commit/e04832589c71359fc4c30e45a3da2a04f93fbd66) Release 0.5.5
|
47
|
+
- [fdc7749](https://github.com/appium/ruby_console/commit/fdc7749b7fd074b89643407a1cd4c7ba71ff15f2) Load minitest by default
|
48
|
+
|
49
|
+
|
50
|
+
#### v0.5.4 2013-08-19
|
51
|
+
|
52
|
+
- [97f5c4f](https://github.com/appium/ruby_console/commit/97f5c4f67c8f689f7342336b428262975e3f8421) Release 0.5.4
|
53
|
+
- [54c61b7](https://github.com/appium/ruby_console/commit/54c61b73091cdaef990eb6b1692576c29a2b5325) Enable export session
|
54
|
+
|
55
|
+
|
56
|
+
#### v0.5.3 2013-08-07
|
57
|
+
|
58
|
+
- [595bbe9](https://github.com/appium/ruby_console/commit/595bbe91fd437f95efde7da5a16cf85b0debb4f2) Release 0.5.3
|
59
|
+
- [91b8afc](https://github.com/appium/ruby_console/commit/91b8afcfabb2a2884da343f7f7e7781a6e08da02) Use awesome_print in Pry
|
60
|
+
- [220c31c](https://github.com/appium/ruby_console/commit/220c31c12c4aa765181ed271fdadbef8d004c50d) Fix release notes
|
61
|
+
- [d3d1960](https://github.com/appium/ruby_console/commit/d3d1960eb3de6d097ae46dfe19340159a1851990) Recommend Ruby 2.0
|
62
|
+
- [02850fa](https://github.com/appium/ruby_console/commit/02850faab107e3749334560573061db2ddf034ea) Remove old todo
|
63
|
+
|
64
|
+
|
65
|
+
#### v0.5.2 2013-07-26
|
66
|
+
|
67
|
+
- [0845ddd](https://github.com/appium/ruby_console/commit/0845dddda181f9349a4e1162b3dfea732491a743) Release 0.5.2
|
68
|
+
- [82e83c4](https://github.com/appium/ruby_console/commit/82e83c45fc4af41f0505ac2a00bb6ba2a3689d41) Add Ruby 2.0 notes
|
69
|
+
- [c36701b](https://github.com/appium/ruby_console/commit/c36701b11f1d2eab4885a6492cb320d48e3c7d1f) Require Ruby files listed in appium.txt
|
70
|
+
- [7648bda](https://github.com/appium/ruby_console/commit/7648bda1aea63b65af63901a61e94c07ed6e2721) Add commands to fix permission issues
|
71
|
+
- [2750b5e](https://github.com/appium/ruby_console/commit/2750b5ecc0f15ad5fde864dd237a01f2af85c693) Update osx.md
|
72
|
+
- [65d7e45](https://github.com/appium/ruby_console/commit/65d7e4545a62f72cf6af6fb839f30cbada85c007) Update readme.md
|
73
|
+
- [bfe9738](https://github.com/appium/ruby_console/commit/bfe9738efc4af3bde8ee73eb4df367ef4f12e2c8) Update osx.md
|
74
|
+
- [bf83b65](https://github.com/appium/ruby_console/commit/bf83b65bf28546f9f5339b537b6a75cfff33327e) Update osx.md
|
75
|
+
- [f31041d](https://github.com/appium/ruby_console/commit/f31041d9b6f9afb5576a806ea49166140b8b0843) Fix grunt command
|
76
|
+
- [e4d7e42](https://github.com/appium/ruby_console/commit/e4d7e4293e1549a31ccc3b9622a85c5d4a6384ce) Update osx.md
|
77
|
+
- [9906226](https://github.com/appium/ruby_console/commit/9906226bec455aa7025efe6cb1f13b0ccd501b9d) Update osx.md
|
78
|
+
- [0f3059f](https://github.com/appium/ruby_console/commit/0f3059fe95527f9b3641a2f4afb9b9c7a8aee3eb) Update ios_v_android.md
|
79
|
+
- [1b97d06](https://github.com/appium/ruby_console/commit/1b97d06c7ca825a67f21d71b5eaee7cfce058a6f) Update ios_v_android.md
|
80
|
+
- [415c64c](https://github.com/appium/ruby_console/commit/415c64c14f9990e1790e75434526673a449ef505) Update osx.md
|
81
|
+
- [2beb4d7](https://github.com/appium/ruby_console/commit/2beb4d70bdf955e056c72d7d5f7b8052e0fe8f38) Update osx.md
|
82
|
+
- [254b66c](https://github.com/appium/ruby_console/commit/254b66ca80d75d7da3336217e75b5f0fea4ab0b7) Update readme.md
|
83
|
+
- [cce92d9](https://github.com/appium/ruby_console/commit/cce92d9494bbb281aa714be8a39ac0aeaa435372) Add version badge
|
84
|
+
|
85
|
+
|
86
|
+
#### v0.5.1 2013-05-24
|
87
|
+
|
88
|
+
- [3d9aef1](https://github.com/appium/ruby_console/commit/3d9aef1458d0874c5c740faf8e41086ee65da86d) Release 0.5.1
|
89
|
+
- [7242c5e](https://github.com/appium/ruby_console/commit/7242c5e72f9057fd18efa726077f78999e0f53e3) Update appium_console.gemspec
|
90
|
+
- [f9d8b70](https://github.com/appium/ruby_console/commit/f9d8b7031425ab742285e0513520ca17bbbf2cde) Update readme.md
|
91
|
+
|
92
|
+
|
93
|
+
#### v0.5.0 2013-05-24
|
94
|
+
|
95
|
+
- [2734fda](https://github.com/appium/ruby_console/commit/2734fdabed2802e15f161bf81ba56dc51cd76ce3) Release 0.5.0
|
96
|
+
- [b79814c](https://github.com/appium/ruby_console/commit/b79814c1b83c756583038aabe419c6ea81bc41cd) Fix gemspec
|
97
|
+
- [57883e6](https://github.com/appium/ruby_console/commit/57883e63d76f006ffecca38df38bfe4332d10f19) Move appium.txt loading to appium_lib
|
98
|
+
- [b683249](https://github.com/appium/ruby_console/commit/b6832498adce98a053370085f96973d272b6be58) Update osx.md
|
99
|
+
- [4b1dc4e](https://github.com/appium/ruby_console/commit/4b1dc4efa56be4be23e4e4842c6ca5c98486f12f) Update osx.md
|
100
|
+
- [ab94da2](https://github.com/appium/ruby_console/commit/ab94da2212c89d22bbe77ab3ad749343da390242) Update readme.md
|
101
|
+
- [263ca4d](https://github.com/appium/ruby_console/commit/263ca4d2490e712901279fe6f184864760edc1a8) Update osx.md
|
102
|
+
- [5c001b3](https://github.com/appium/ruby_console/commit/5c001b357c132d26f3eee1d0e5f40569d489e9bf) Update osx.md
|
103
|
+
- [0bf1dd7](https://github.com/appium/ruby_console/commit/0bf1dd7f517cde84f77f46bcff1fe03aa26f9e95) Update osx.md
|
104
|
+
|
105
|
+
|
106
|
+
#### v0.3.6 2013-05-20
|
107
|
+
|
108
|
+
- [20508c2](https://github.com/appium/ruby_console/commit/20508c2ed00edb3ae1260fe1b0f4b61206658631) Release 0.3.6
|
109
|
+
- [4004daa](https://github.com/appium/ruby_console/commit/4004daa8b388c07599e94c063e327a8e89472980) Fix relative paths
|
110
|
+
- [73f9713](https://github.com/appium/ruby_console/commit/73f97136ce903f72292e0e1eb9a318cbb37a1b78) Update osx.md
|
111
|
+
- [cfbc702](https://github.com/appium/ruby_console/commit/cfbc702e4c35dc070bdcf5ccf279b713c76f0a87) Update osx.md
|
112
|
+
- [a3a52b2](https://github.com/appium/ruby_console/commit/a3a52b24c078253d5809b7ab064f45400ec56368) Update osx.md
|
113
|
+
- [f228d61](https://github.com/appium/ruby_console/commit/f228d61a8285bcd973fb9c58c3511c549580d639) Appium works on Windows now
|
114
|
+
- [966ed66](https://github.com/appium/ruby_console/commit/966ed661a6e3bb820a6d111fc85b0127cc0bbe1e) Avoid sudo
|
115
|
+
- [311790d](https://github.com/appium/ruby_console/commit/311790ddb530d80b5c1bb550bf6467c0b4b7e6b6) Fix release notes
|
116
|
+
- [37f8a15](https://github.com/appium/ruby_console/commit/37f8a15b3025c3c1676a271574a3587cce749f00) Update documentation links
|
117
|
+
- [f92bdbb](https://github.com/appium/ruby_console/commit/f92bdbb09554c21617fa3cb6a8778fdd81a87b07) Move docs.md to ruby_lib
|
118
|
+
- [41a6201](https://github.com/appium/ruby_console/commit/41a6201fb1c59d4bb97755a794465073e33b5102) Update osx.md
|
119
|
+
- [7289300](https://github.com/appium/ruby_console/commit/728930003b287d135662994dfbb10ee12d8971ee) Update osx.md
|
120
|
+
- [082ecd5](https://github.com/appium/ruby_console/commit/082ecd573cf4606ee648b4211664ff459050c9d5) Update gemspec
|
121
|
+
- [141c8c5](https://github.com/appium/ruby_console/commit/141c8c51f8d1373180dd53ddb56ea719b59b63fc) Recommend 10.8
|
122
|
+
- [435f2ca](https://github.com/appium/ruby_console/commit/435f2ca8226c3e6ed4380e1a2c640cd151120aa6) Update osx.md
|
123
|
+
- [18e60d6](https://github.com/appium/ruby_console/commit/18e60d629ac6f3423201fbe313075db32a690fea) Update osx.md
|
124
|
+
- [a352466](https://github.com/appium/ruby_console/commit/a3524662e702af984f1c8dff42ddbc20914cd39f) Update osx.md
|
125
|
+
- [231c4c9](https://github.com/appium/ruby_console/commit/231c4c9cd98353593137db01781bb22113b8ae35) Update osx.md
|
126
|
+
- [f3c2034](https://github.com/appium/ruby_console/commit/f3c2034a6103305ae6e1ccdd9a1ca8df16ac00f5) Update osx.md
|
127
|
+
- [82bc3d1](https://github.com/appium/ruby_console/commit/82bc3d17f7451edcba3bde414a82044dbf5bcd38) Update osx.md
|
128
|
+
- [0dc828e](https://github.com/appium/ruby_console/commit/0dc828e3770b49f522e9f8f6d42ba7fe1639888f) Update osx.md
|
129
|
+
- [76a0423](https://github.com/appium/ruby_console/commit/76a042322e76e5f57632ee6d610933981bcc18fc) Update osx.md
|
130
|
+
- [8e53c8d](https://github.com/appium/ruby_console/commit/8e53c8d374e0e80828a7c32fc3d2a43833736863) Add bash profile
|
131
|
+
- [b26abdd](https://github.com/appium/ruby_console/commit/b26abdda75b7b9a3728d3cf975eff9fe9384ff2b) Update osx.md
|
132
|
+
- [00a066f](https://github.com/appium/ruby_console/commit/00a066f0577492de3ab0d413f1242c547c93da7f) Update osx.md
|
133
|
+
- [14cae88](https://github.com/appium/ruby_console/commit/14cae889ce471d47e400ef4025635d6949c6799e) Update osx.md
|
134
|
+
- [bdb9aaa](https://github.com/appium/ruby_console/commit/bdb9aaabe8cd07fc516dc19909fd43323179ea03) Update osx.md
|
135
|
+
|
136
|
+
|
137
|
+
#### v0.3.5 2013-05-06
|
138
|
+
|
139
|
+
- [b031b60](https://github.com/appium/ruby_console/commit/b031b60276b01e86a649cd8db8b250f3d52da9cc) Release 0.3.5
|
140
|
+
- [521639d](https://github.com/appium/ruby_console/commit/521639dc1b53371a472a40304c59e4476ab22197) Add selendroid
|
141
|
+
- [c5456d2](https://github.com/appium/ruby_console/commit/c5456d29d5a1aeed1f1226b90c69a7d0025ad224) Use --local install
|
142
|
+
|
143
|
+
|
144
|
+
#### v0.3.4 2013-04-26
|
145
|
+
|
146
|
+
- [2a621bb](https://github.com/appium/ruby_console/commit/2a621bb1620685577173fdf59daabca036cd30f7) Release 0.3.4
|
147
|
+
- [bd60857](https://github.com/appium/ruby_console/commit/bd60857f39bd17e454a10ad0658c01c20869c33a) Fix arc upgrade
|
148
|
+
|
149
|
+
|
150
|
+
#### v0.3.3 2013-04-26
|
151
|
+
|
152
|
+
- [a4cea5b](https://github.com/appium/ruby_console/commit/a4cea5b9857f5b450ade03cf3f326605b2aff040) Release 0.3.3
|
153
|
+
- [188503c](https://github.com/appium/ruby_console/commit/188503c0f1c884884408896a8351ab34823c5c69) Fix appium.txt support
|
154
|
+
|
155
|
+
|
156
|
+
#### v0.3.2 2013-04-26
|
157
|
+
|
158
|
+
- [521b85e](https://github.com/appium/ruby_console/commit/521b85e570717dc83481e4d2baf0804787031c46) Release 0.3.2
|
159
|
+
|
160
|
+
|
161
|
+
#### v0.3.1 2013-04-26
|
162
|
+
|
163
|
+
- [5e41993](https://github.com/appium/ruby_console/commit/5e41993aa505310b3442b0ea5c8cdf72b01cd62c) Release 0.3.1
|
164
|
+
- [d98d052](https://github.com/appium/ruby_console/commit/d98d052af5e118a099d4abac7c24db41a5ff6974) Fix uninstall
|
165
|
+
- [6b10caa](https://github.com/appium/ruby_console/commit/6b10caa3be482a149e433e8053ccb23c64aa723f) Fix version command
|
166
|
+
|
167
|
+
|
168
|
+
#### v0.3.0 2013-04-25
|
169
|
+
|
170
|
+
- [09ee29c](https://github.com/appium/ruby_console/commit/09ee29c03e4a2222c089f4ab736ec0e0bfa53930) Release 0.3.0
|
171
|
+
- [2f0f38e](https://github.com/appium/ruby_console/commit/2f0f38e86155b41ff49f3419800413589efb19c4) Update for new Appium lib
|
172
|
+
- [1bbc128](https://github.com/appium/ruby_console/commit/1bbc128cd5e7d9cadfc6ff9397179ed38459238e) Remove minitest example
|
173
|
+
|
174
|
+
|
175
|
+
#### v0.0.30 2013-04-16
|
176
|
+
|
177
|
+
- [af1dd74](https://github.com/appium/ruby_console/commit/af1dd74f254c512c9b63a013570638eb13adbe91) Release 0.0.30
|
178
|
+
|
179
|
+
|
180
|
+
#### v0.0.29 2013-04-15
|
181
|
+
|
182
|
+
- [f3251c8](https://github.com/appium/ruby_console/commit/f3251c819e85f5d8fabd3f9a30a3de4307d38098) Release 0.0.29
|
183
|
+
- [83ed1b9](https://github.com/appium/ruby_console/commit/83ed1b9f4a3ca1a3b1eb6770116b0e3d42f39dfa) Update osx.md
|
184
|
+
- [d3f30ef](https://github.com/appium/ruby_console/commit/d3f30ef722a80e957624f4d49e1a63a720e70da6) Use brew install node
|
185
|
+
- [8a8401e](https://github.com/appium/ruby_console/commit/8a8401e3a01762feec5d9ab694843d96d2851a37) Rewrite test order when using reports
|
186
|
+
- [43bec7d](https://github.com/appium/ruby_console/commit/43bec7d23c36f641c049f413a7d2a97f366d1282) Add minitest example
|
187
|
+
- [211fe2e](https://github.com/appium/ruby_console/commit/211fe2ecc681403fa081ff89e7caaf0a97a440c4) Fix notes
|
188
|
+
|
189
|
+
|
190
|
+
#### v0.0.28 2013-04-11
|
191
|
+
|
192
|
+
- [94ae27d](https://github.com/appium/ruby_console/commit/94ae27d54c57f16b45937decfded0cdac9e10160) Release 0.0.28
|
193
|
+
- [8030b11](https://github.com/appium/ruby_console/commit/8030b116ac6b677366a823608fc4de4c68747ecf) Add release notes
|
194
|
+
- [c734bf0](https://github.com/appium/ruby_console/commit/c734bf0ccdeb959edcba15126ef1866671f599d2) Add release notes
|
195
|
+
- [30c8495](https://github.com/appium/ruby_console/commit/30c849564a0d90d00cf3ab787b6431b57358271f) Update readme.md
|
196
|
+
- [fe46dce](https://github.com/appium/ruby_console/commit/fe46dce875403b9bf3d0520cf47b273d78c4677d) Update readme.md
|
197
|
+
- [842f700](https://github.com/appium/ruby_console/commit/842f70080d9bd82bb348b2e9445d6fe36149ea25) Update readme.md
|
198
|
+
- [a535c9d](https://github.com/appium/ruby_console/commit/a535c9d4175ef7b7ea0242f2d3c74981b0a92511) Add appium.txt config file
|
199
|
+
- [e405df1](https://github.com/appium/ruby_console/commit/e405df1724fc099e6f7f0e586589a0fa02f301ef) Update osx.md
|
200
|
+
- [22a77e4](https://github.com/appium/ruby_console/commit/22a77e45373080d2b02e45ce75183a8abb5bcb11) Appium Console is a gem so no need to clone
|
201
|
+
- [5fc2d07](https://github.com/appium/ruby_console/commit/5fc2d07f20c0ac8d4f2603c6540fa6cffbe8afb6) Use read only git url
|
202
|
+
- [fd2258d](https://github.com/appium/ruby_console/commit/fd2258de4c0f1ff775e6d43e3bd4cf1740f13ee3) Add arc upgrade to readme
|
203
|
+
- [70f0ab8](https://github.com/appium/ruby_console/commit/70f0ab8686d86d049996e6bdd77404187cb41c8c) Add arc upgrade command
|
204
|
+
- [ba1afa5](https://github.com/appium/ruby_console/commit/ba1afa5dffd1007e6e0f18d6d96ac498247a13eb) Add version command to readme
|
205
|
+
- [d5d0b0d](https://github.com/appium/ruby_console/commit/d5d0b0d12df00e294bbb0df0252c5ffc452cca92) Add version command
|
206
|
+
- [b03e80e](https://github.com/appium/ruby_console/commit/b03e80e36e11ea7fbddc7c7acb969b8ea30714b0) Move docs to ruby_lib
|
207
|
+
- [626f813](https://github.com/appium/ruby_console/commit/626f813a666fb16e5d32271a18b3bb60635966d1) Update readme.md
|
208
|
+
- [3f5af60](https://github.com/appium/ruby_console/commit/3f5af6077a872a40314aba9f00b89a519e22b0ba) Update osx.md
|
209
|
+
|
210
|
+
|
211
|
+
#### v0.0.27 2013-04-05
|
212
|
+
|
213
|
+
- [1551adc](https://github.com/appium/ruby_console/commit/1551adc6167b0195d847c14edbc9358f4d23a078) Release 0.0.27
|
214
|
+
|
215
|
+
|
216
|
+
#### v0.0.26 2013-04-05
|
217
|
+
|
218
|
+
- [645578b](https://github.com/appium/ruby_console/commit/645578bed82d11c06ea1e7415d5864edc09e8b31) Release 0.0.26
|
219
|
+
- [d42cfd2](https://github.com/appium/ruby_console/commit/d42cfd228b059202c7b745cb0b69259ce431e04d) Add @keep to cucumber example
|
220
|
+
- [8b7dc20](https://github.com/appium/ruby_console/commit/8b7dc20b2083bdbc936e2155dab870c0970d9d78) Update readme.md
|
221
|
+
- [9d10070](https://github.com/appium/ruby_console/commit/9d10070102c855cb2d5b47bec751c276582c1beb) Update readme.md
|
222
|
+
|
223
|
+
|
224
|
+
#### v0.0.25 2013-03-28
|
225
|
+
|
226
|
+
- [12e40b8](https://github.com/appium/ruby_console/commit/12e40b876136ea987d47f4d419f67d4d8aeaadd5) Release 0.0.25
|
227
|
+
|
228
|
+
|
229
|
+
#### v0.0.24 2013-03-28
|
230
|
+
|
231
|
+
- [c7097e1](https://github.com/appium/ruby_console/commit/c7097e1247c76397196389d2221efc1ae4dac803) Release 0.0.24
|
232
|
+
- [c9a94ea](https://github.com/appium/ruby_console/commit/c9a94ea19890c6b96f5ce4f491d953e651dbf4b9) RubyGems can't detect dependencies properly
|
233
|
+
- [2596610](https://github.com/appium/ruby_console/commit/2596610151f3d939fcc8edc178a65379831095d9) Add name doc
|
234
|
+
|
235
|
+
|
236
|
+
#### v0.0.23 2013-03-27
|
237
|
+
|
238
|
+
- [b9334ff](https://github.com/appium/ruby_console/commit/b9334ff5e5b4070ce0ceff061a07bd57c3386bb3) Release 0.0.23
|
239
|
+
- [62ff36a](https://github.com/appium/ruby_console/commit/62ff36a2224aa6c045efd43520b9f52910d4a2d7) Update readme.md
|
240
|
+
- [5a08576](https://github.com/appium/ruby_console/commit/5a0857672ce8f4e21e00edef2dace0c5f6f4d2e8) Update osx.md
|
241
|
+
- [038202a](https://github.com/appium/ruby_console/commit/038202a495efd7b25d970e1c48044f6bd14a5a30) Update osx.md
|
242
|
+
- [da91d95](https://github.com/appium/ruby_console/commit/da91d95b17d9a0de9a77170789cdb38d03d68cc6) Update osx.md
|
243
|
+
- [4814e97](https://github.com/appium/ruby_console/commit/4814e97079f4cd47c797276014ae118e55d79902) Update osx.md
|
244
|
+
- [e3cc15c](https://github.com/appium/ruby_console/commit/e3cc15cc311ade3fbe242d0f0ebbb7836c8c873b) Update osx.md
|
245
|
+
- [99b5ce0](https://github.com/appium/ruby_console/commit/99b5ce011cec5fdc13ccfde60d78bd6350cebf2b) Update osx.md
|
246
|
+
- [34acecc](https://github.com/appium/ruby_console/commit/34acecc016ba11d3bf49b4e4e98b5611fb947553) Update osx.md
|
247
|
+
- [f5e3a5f](https://github.com/appium/ruby_console/commit/f5e3a5f599113d567180768fc79d241d9913184f) Update osx.md
|
248
|
+
|
249
|
+
|
250
|
+
#### v0.0.22 2013-03-23
|
251
|
+
|
252
|
+
- [319554c](https://github.com/appium/ruby_console/commit/319554cc14c34cd981a91ad0e5a84afc574d036e) Release 0.0.22
|
253
|
+
- [e7b4508](https://github.com/appium/ruby_console/commit/e7b45082250c9e17feb4c1529bae634c46580c75) Fix gemspec
|
254
|
+
|
255
|
+
|
256
|
+
#### v0.0.21 2013-03-22
|
257
|
+
|
258
|
+
- [9dc45af](https://github.com/appium/ruby_console/commit/9dc45aff3d369d73b6ed2c3df79cb9845e4fa2eb) Release 0.0.21
|
259
|
+
- [4ad39ca](https://github.com/appium/ruby_console/commit/4ad39caeaafbb58d983adb06b10ca4fc6c962261) Complete rename
|
260
|
+
|
261
|
+
|
262
|
+
#### v0.0.20 2013-03-22
|
263
|
+
|
264
|
+
- [667db43](https://github.com/appium/ruby_console/commit/667db43968c9d584d1fc606c264bc894d08bc74c) Release 0.0.20
|
265
|
+
- [c6b0cad](https://github.com/appium/ruby_console/commit/c6b0cad7b139ecc6f3acaf13c3ae9fdc97254bf8) Update appium_console.gemspec
|
266
|
+
- [f3cfe6f](https://github.com/appium/ruby_console/commit/f3cfe6f835c5cb1c9784c4914ca7555ad82426af) Update readme.md
|
267
|
+
|
268
|
+
|
269
|
+
#### v0.0.19 2013-03-22
|
270
|
+
|
271
|
+
- [217c452](https://github.com/appium/ruby_console/commit/217c452980347c1da0ab1244b58c66076d7b603f) Release 0.0.19
|
272
|
+
- [e77fbf9](https://github.com/appium/ruby_console/commit/e77fbf97f243ecf63b1ff58c49f5fbee0bd71834) Fix gemspec
|
273
|
+
- [266c724](https://github.com/appium/ruby_console/commit/266c724d0980f326f86e74c3c959b9d6a83e3b91) Update .gitignore
|
274
|
+
- [fcc4162](https://github.com/appium/ruby_console/commit/fcc416216ccbb8ebaa53ea3fb602d2e32e0e9660) Add gemspec
|
275
|
+
- [2050852](https://github.com/appium/ruby_console/commit/2050852fd299b18501a5b43f56b56df3f7cf63ac) Fix gemspec
|
276
|
+
- [e1464d0](https://github.com/appium/ruby_console/commit/e1464d02048c62a53cedefb7348fb4334633937f) Fix version
|
277
|
+
- [331225f](https://github.com/appium/ruby_console/commit/331225f0ee2e097741f8f6f43de2b90e7af23bcf) Add encoding
|
278
|
+
- [900dd16](https://github.com/appium/ruby_console/commit/900dd169ec57108b54e047df24274032d8f33753) Restore files
|
279
|
+
- [63cf484](https://github.com/appium/ruby_console/commit/63cf48424fea8340b666a303777e30338041f174) Fix link
|
280
|
+
- [80faa6e](https://github.com/appium/ruby_console/commit/80faa6e4c7585a16071ea83f3ee74c6e1a1705b5) Rename gem to appium_console
|
281
|
+
- [3b05eef](https://github.com/appium/ruby_console/commit/3b05eefb908f79dc0f1458d87524501599e663a7) Rename to appium console for rubygems
|
282
|
+
- [b5f036c](https://github.com/appium/ruby_console/commit/b5f036c2690c2d5673d0f28399cc53ff8887de8b) Update ffi to 1.5.0
|
283
|
+
- [a647bd2](https://github.com/appium/ruby_console/commit/a647bd2c7e3e8e18103317796c57b90df68971a4) Add implicit wait docs
|
284
|
+
|
285
|
+
|
286
|
+
#### v0.0.17 2013-03-21
|
287
|
+
|
288
|
+
- [81f2288](https://github.com/appium/ruby_console/commit/81f2288c9559ae2d1eb893c146e43e7c6455aa29) Release 0.0.17
|
289
|
+
- [6a4f5e6](https://github.com/appium/ruby_console/commit/6a4f5e67c943f08beb8aca599e561e4e7ba4abea) Fix doc
|
290
|
+
|
291
|
+
|
292
|
+
#### v0.0.16 2013-03-20
|
293
|
+
|
294
|
+
- [6548de1](https://github.com/appium/ruby_console/commit/6548de111182df8a6eacf7f2a4f896fb23593ce0) Release 0.0.16
|
295
|
+
|
296
|
+
|
297
|
+
#### v0.0.15 2013-03-20
|
298
|
+
|
299
|
+
- [68b4b80](https://github.com/appium/ruby_console/commit/68b4b8085b95582528fe7769fff3682a88e161da) Release 0.0.15
|
300
|
+
- [e5a4227](https://github.com/appium/ruby_console/commit/e5a4227911880c9ce583bb3914a76f071db03740) Update Rakefile
|
301
|
+
- [33d3455](https://github.com/appium/ruby_console/commit/33d345532d50d5a130d1731b2a8fbd821af4733c) Add element(index) docs
|
302
|
+
- [06cd8d4](https://github.com/appium/ruby_console/commit/06cd8d44708107999c61c4ea67e069fca1680939) Update readme.md
|
303
|
+
- [4b4231a](https://github.com/appium/ruby_console/commit/4b4231ad221e9baaa1b448b9750445b5b9774d6e) Update readme.md
|
304
|
+
- [587c4b1](https://github.com/appium/ruby_console/commit/587c4b1df095cac5096ad74fb90f77a2f45dcf88) Update readme.md
|
305
|
+
- [ca1b702](https://github.com/appium/ruby_console/commit/ca1b70240b79bf5ef7ba069e63280e070b40f7e4) Fix update notes
|
306
|
+
- [fa9e0a8](https://github.com/appium/ruby_console/commit/fa9e0a86b2d7109991f57e979055b8d26212f23d) Update readme.md
|
307
|
+
|
308
|
+
|
309
|
+
#### v0.0.14 2013-03-20
|
310
|
+
|
311
|
+
- [bb3a695](https://github.com/appium/ruby_console/commit/bb3a69546e6cfa63dc4d71fd77ed1178e75d896b) Release 0.0.14
|
312
|
+
- [cf92263](https://github.com/appium/ruby_console/commit/cf922632cfb8fb2abfe63b4c28d708cb451eff40) Fix app_lib to ruby console version
|
313
|
+
- [77647f1](https://github.com/appium/ruby_console/commit/77647f12394bc3f1bb32511f877bda94b085462a) Add mobile helper doc
|
314
|
+
- [1718459](https://github.com/appium/ruby_console/commit/17184595d3157efc5733b7fe22f45e7bf3f0d95b) Update readme.md
|
315
|
+
- [5d9a122](https://github.com/appium/ruby_console/commit/5d9a1220be2b9e242b13044904205bf01e1db757) Update readme.md
|
316
|
+
- [a04a1f1](https://github.com/appium/ruby_console/commit/a04a1f140755ae655b0151e9fe0100ab7553b3a2) Update readme.md
|
317
|
+
- [1b141e8](https://github.com/appium/ruby_console/commit/1b141e8b4ea18f867a31659f31bfd4cae8420907) Update readme.md
|
318
|
+
- [eb4db8a](https://github.com/appium/ruby_console/commit/eb4db8aaeb34ebb85ce8ebee7eeb72afd7642d90) Update readme.md
|
319
|
+
- [05c7d5b](https://github.com/appium/ruby_console/commit/05c7d5b5e9e4fe54d10bfcb5bdd83b0a73d614f9) Update my_test.rb
|
320
|
+
- [50c1e4e](https://github.com/appium/ruby_console/commit/50c1e4eafc1db63b612ce1a489fc184d84e80051) Update my_test.rb
|
321
|
+
- [2dedefd](https://github.com/appium/ruby_console/commit/2dedefd9fb0f3d6b8e45b0eeeb7139bf6b829666) Update readme.md
|
322
|
+
- [d097103](https://github.com/appium/ruby_console/commit/d097103e7a1ab1b78050489c0fa43c5bf14f2eae) Update readme.md
|
323
|
+
- [a00c6a9](https://github.com/appium/ruby_console/commit/a00c6a91b53d166afc4b3d2213ef5e44cddee1ad) Update readme.md
|
324
|
+
|
325
|
+
|
326
|
+
#### v0.0.13 2013-03-20
|
327
|
+
|
328
|
+
- [36127e0](https://github.com/appium/ruby_console/commit/36127e0e2250068673d7cff81b6a51c10ef65c7a) Release 0.0.13
|
329
|
+
- [7af75f5](https://github.com/appium/ruby_console/commit/7af75f540043cac96afc4a686204355d4d4fa895) Release 0.0.12
|
330
|
+
- [929eb9d](https://github.com/appium/ruby_console/commit/929eb9d3807d68367deb7e55abbe5153080fb93c) Release 0.0.11
|
331
|
+
- [6423db3](https://github.com/appium/ruby_console/commit/6423db32896af21697071bd74ca867742384bb88) Bump gemspec
|
332
|
+
- [718ea73](https://github.com/appium/ruby_console/commit/718ea735320b76080f776a28b3ca090c735f6b95) Update readme.md
|
333
|
+
- [4c27218](https://github.com/appium/ruby_console/commit/4c272185c8b29370811d5cac5bd410d30ae98a80) Release 0.0.9
|
334
|
+
- [02d41c7](https://github.com/appium/ruby_console/commit/02d41c7231f3e83fff27ea0463dc6dcf064a2e48) Release 0.0.12
|
335
|
+
- [ad0c8d2](https://github.com/appium/ruby_console/commit/ad0c8d2340d245ab448dde2783e5cdea751a83b0) Update ruby_console.gemspec
|
336
|
+
- [9b4f796](https://github.com/appium/ruby_console/commit/9b4f796b5292025bc7c958f1d1bdd91cebaf3e8e) Release 0.0.11
|
337
|
+
- [59673a5](https://github.com/appium/ruby_console/commit/59673a5891356e2a927cfc3b217765d71596ac78) Bump gemspec
|
338
|
+
- [433a225](https://github.com/appium/ruby_console/commit/433a2258c3401c13b259ec0faeb5afd5461f142a) Update ruby_console.gemspec
|
339
|
+
- [27f2a6c](https://github.com/appium/ruby_console/commit/27f2a6cbb3065bf32051f5fa3cc5a3779487890f) Update readme.md
|
340
|
+
- [69f24f6](https://github.com/appium/ruby_console/commit/69f24f6b9afb775143af97e8fd8287d2f9bf5f4c) Release 0.0.9
|
341
|
+
|
342
|
+
|
343
|
+
#### v0.0.12 2013-03-20
|
344
|
+
|
345
|
+
- [02d41c7](https://github.com/appium/ruby_console/commit/02d41c7231f3e83fff27ea0463dc6dcf064a2e48) Release 0.0.12
|
346
|
+
|
347
|
+
|
348
|
+
#### v0.0.11 2013-03-20
|
349
|
+
|
350
|
+
- [9b4f796](https://github.com/appium/ruby_console/commit/9b4f796b5292025bc7c958f1d1bdd91cebaf3e8e) Release 0.0.11
|
351
|
+
- [59673a5](https://github.com/appium/ruby_console/commit/59673a5891356e2a927cfc3b217765d71596ac78) Bump gemspec
|
352
|
+
- [27f2a6c](https://github.com/appium/ruby_console/commit/27f2a6cbb3065bf32051f5fa3cc5a3779487890f) Update readme.md
|
data/web_console.gemspec
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
def self.add_to_path path
|
3
|
+
path = File.expand_path "../#{path}/", __FILE__
|
4
|
+
|
5
|
+
$:.unshift path unless $:.include? path
|
6
|
+
end
|
7
|
+
|
8
|
+
add_to_path 'lib'
|
9
|
+
|
10
|
+
require 'web_console/version'
|
11
|
+
|
12
|
+
Gem::Specification.new do |s|
|
13
|
+
# 1.8.x is not supported
|
14
|
+
s.required_ruby_version = '>= 1.9.3'
|
15
|
+
|
16
|
+
s.name = 'web_console'
|
17
|
+
s.version = Appium::Console::VERSION
|
18
|
+
s.date = Appium::Console::DATE
|
19
|
+
s.license = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
20
|
+
s.description = s.summary = 'Appium Ruby Console'
|
21
|
+
s.description += '.' # avoid identical warning
|
22
|
+
s.authors = s.email = [ 'code@bootstraponline.com' ]
|
23
|
+
s.homepage = 'https://github.com/bootstraponline/web_console'
|
24
|
+
s.require_paths = [ 'lib' ]
|
25
|
+
|
26
|
+
s.add_runtime_dependency 'page-object', '~> 0.9.4'
|
27
|
+
s.add_runtime_dependency 'pry', '= 0.9.12.3'
|
28
|
+
s.add_runtime_dependency 'spec', '~> 5.0.19'
|
29
|
+
s.add_development_dependency 'rake', '~> 10.1.0'
|
30
|
+
s.add_development_dependency 'posix/spawn', '~> 0.3.6'
|
31
|
+
|
32
|
+
s.executables = [ 'rubyweb' ]
|
33
|
+
s.files = `git ls-files`.split "\n"
|
34
|
+
end
|