appium_console 2.7.0 → 2.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/appium_console/version.rb +2 -2
- data/readme.md +7 -3
- data/release_notes.md +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26a8be24b8849a49cb64fbc4e9510904ff185c7a
|
4
|
+
data.tar.gz: e3add4126378e29e0adf457ab27a0e17f0320da0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 961712dfb7d62852be963f04a2383c89b8134223c7f12ebf9bfbead9c6ad0476567660f541ef0e3d4d54fb30eb14b99905373ce415df9da895350c6d5f61240f
|
7
|
+
data.tar.gz: 7e9c603d2fc95ef425fc5e64fa7dc661ff00990f6ab81bc351e6d495cfb3ded3947ac42c6010ab66e89d10963f7a0b87d5ba2f469297966cd2983826fba94102
|
@@ -2,6 +2,6 @@
|
|
2
2
|
# Define Appium module so version can be required directly.
|
3
3
|
module Appium; end unless defined? Appium
|
4
4
|
module Appium::Console
|
5
|
-
VERSION = '2.7.
|
6
|
-
DATE = '2017-10-
|
5
|
+
VERSION = '2.7.1' unless defined? ::Appium::Console::VERSION
|
6
|
+
DATE = '2017-10-29' unless defined? ::Appium::Console::DATE
|
7
7
|
end
|
data/readme.md
CHANGED
@@ -35,9 +35,13 @@ The bond gem is necessary for proper auto complete. Installing it will fix this
|
|
35
35
|
|
36
36
|
#### Notes
|
37
37
|
|
38
|
-
You should uninstall the `ap` gem because it breaks awesome_print.
|
39
|
-
|
40
|
-
|
38
|
+
1. You should uninstall the `ap` gem because it breaks awesome_print.
|
39
|
+
- `gem uninstall -aIx ap`
|
40
|
+
2. If the statement ends in `;` then the element will not be shown in Pry
|
41
|
+
```
|
42
|
+
find_element(:uiautomator, 'new UiSelector().textContains("Text")'); # -- no element shown
|
43
|
+
find_element(:uiautomator, 'new UiSelector().textContains("Text")') # shows element
|
44
|
+
```
|
41
45
|
|
42
46
|
#### Run
|
43
47
|
|
data/release_notes.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
#### v2.7.1 2017-10-29
|
2
|
+
|
3
|
+
- [40e9214](https://github.com/appium/ruby_console/commit/40e92141020df1e5b8c536fe2552abfe1d04b862) Release 2.7.1
|
4
|
+
- [6a01fe3](https://github.com/appium/ruby_console/commit/6a01fe32290bb09a0d429f1ca90614c269e3d815) Merge pull request #82 from KazuCocoa/update_readme
|
5
|
+
- [d8f096e](https://github.com/appium/ruby_console/commit/d8f096eebc58cf5ba0ffe7ed071d9804461bbdb5) add notice for ;
|
6
|
+
|
7
|
+
|
1
8
|
#### v2.7.0 2017-10-14
|
2
9
|
|
3
10
|
- [4a20815](https://github.com/appium/ruby_console/commit/4a20815de598042c98a9c83069148261d90fc67b) Release 2.7.0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appium_console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code@bootstraponline.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-10-
|
11
|
+
date: 2017-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appium_lib
|