appium_lib 0.3.8 → 0.3.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/appium_lib/common/patch.rb +3 -0
- data/lib/appium_lib/common/version.rb +1 -1
- data/release_notes.md +13 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzE4OGFmMzI5YThhZTUzMjM5ZjY4ZmI4NDRjZjAyNjE1MzMxNDk0NQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Y2EzYzU3YzM2NzI4YTFkODlmYWIxMWNmY2IxN2IwZjg5MzU4ZGY3ZQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NmJjNTdmYzIxMjJkZTgwMzM0ZmZmZTFiMmU1NzExNmVmODlmZGIzMTRlMDBj
|
10
|
+
ZGZjYWY3NDUxYjVhM2UzZGI4NGFmZWY2MDVmYzgwYjc1YTVlOGU4ZDY5NTU1
|
11
|
+
ZTI1M2NjMzBkOWE3ZGMyNWE4ODNiOTBiY2Q5MzJhNzAxZTA1MjQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YzQ0ZTUxYzM2ZmJkODAzOThjMDc4MjkyNzE1NGJlYmI0MGFkMDYzZGJlNWI0
|
14
|
+
NWRlODlhZjU4NjMzYTlhMDc2ZjFiZjRjODEyNjkwZmM0MDEyOTRmNDU3ODA3
|
15
|
+
ZDEzNTMzYmEwODYzYTUxM2M4ZDU0YjIzM2ExZDlhOGU3ZmFjMTY=
|
@@ -67,6 +67,9 @@ def patch_webdriver_bridge
|
|
67
67
|
raise ArgumentError, "#{opts.inspect} invalid for #{command.inspect}"
|
68
68
|
end
|
69
69
|
|
70
|
+
# convert /// into /
|
71
|
+
path.gsub! /\/+/, '/'
|
72
|
+
|
70
73
|
# change path from session/efac972c-941a-499c-803c-d7d008749/execute
|
71
74
|
# to /execute
|
72
75
|
# path may be nil, session, or not have anything after the session_id.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
module Appium
|
3
3
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
4
|
-
VERSION = '0.3.
|
4
|
+
VERSION = '0.3.9' unless defined? ::Appium::VERSION
|
5
5
|
DATE = '2013-05-06' unless defined? ::Appium::DATE
|
6
6
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
#### v0.3.8 2013-05-06
|
2
|
+
|
3
|
+
- [e7bc45f](https://github.com/appium/ruby_lib/commit/e7bc45fd88f026dc51237d767da9f9dfa2e05b56) Release 0.3.8
|
4
|
+
- [dc3a50f](https://github.com/appium/ruby_lib/commit/dc3a50f23ca6ba4978ddb9af1dadf6c6015eb9fb) Use 4.2 not 4.1
|
5
|
+
- [f8042f1](https://github.com/appium/ruby_lib/commit/f8042f158f046815238463a9ea86cd66ea725942) Fix page Selendroid
|
6
|
+
- [f9866e0](https://github.com/appium/ruby_lib/commit/f9866e034ea9a3744387fb15d5ca3ba221f27429) Load touch methods
|
7
|
+
- [c3f9a2b](https://github.com/appium/ruby_lib/commit/c3f9a2b0300ee238acf4ce750f9b651ff39eb919) Don't set timeout on Selendroid until it's fixed
|
8
|
+
- [d88245e](https://github.com/appium/ruby_lib/commit/d88245efe8fed5927e136719a9747b788dbd0fc2) Add page for Selendroid
|
9
|
+
- [ff63433](https://github.com/appium/ruby_lib/commit/ff63433db6d68170ef135e151d6ac154c3504f4f) Add id method
|
10
|
+
- [c59f7ce](https://github.com/appium/ruby_lib/commit/c59f7cefc76a9f172e6e6494aca275b5687d1a74) Improve debugging
|
11
|
+
- [873bed9](https://github.com/appium/ruby_lib/commit/873bed9c3d30d0c4a64a497c9636c53275ab943f) Update release notes
|
12
|
+
|
13
|
+
|
1
14
|
#### v0.3.7 2013-05-01
|
2
15
|
|
3
16
|
- [edfd20a](https://github.com/appium/ruby_lib/commit/edfd20a6ffdef8484b9f7b5eddb9c21815241d42) Release 0.3.7
|