appium_lib 0.24.0 → 0.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/docs/android_docs.md +119 -119
- data/docs/ios_docs.md +124 -124
- data/lib/appium_lib/common/version.rb +2 -2
- data/lib/appium_lib/driver.rb +1 -6
- data/release_notes.md +6 -0
- metadata +2 -2
|
@@ -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.24.
|
|
5
|
-
DATE = '2014-03-
|
|
4
|
+
VERSION = '0.24.1' unless defined? ::Appium::VERSION
|
|
5
|
+
DATE = '2014-03-26' unless defined? ::Appium::DATE
|
|
6
6
|
end
|
data/lib/appium_lib/driver.rb
CHANGED
|
@@ -302,12 +302,9 @@ module Appium
|
|
|
302
302
|
@full_reset = opts.fetch :full_reset, true
|
|
303
303
|
@no_reset = opts.fetch :no_reset, false
|
|
304
304
|
|
|
305
|
-
#
|
|
306
|
-
# when full reset is requested, then "no reset" should not be true
|
|
305
|
+
# no_reset/full_reset are mutually exclusive
|
|
307
306
|
@no_reset = false if @full_reset
|
|
308
307
|
@full_reset = false if @no_reset
|
|
309
|
-
@fastReset = ! @full_reset && ! @no_reset
|
|
310
|
-
@skipUninstall = @fastReset || @no_reset
|
|
311
308
|
|
|
312
309
|
# load common methods
|
|
313
310
|
extend Appium::Common
|
|
@@ -382,9 +379,7 @@ module Appium
|
|
|
382
379
|
platform: 'Linux',
|
|
383
380
|
platformName: @device,
|
|
384
381
|
fullReset: @full_reset,
|
|
385
|
-
fastReset: @fast_reset,
|
|
386
382
|
noReset: @no_reset,
|
|
387
|
-
skipUninstall: @skip_uninstall,
|
|
388
383
|
:'device-type' => @device_type,
|
|
389
384
|
:'device-orientation' => @device_orientation,
|
|
390
385
|
name: @app_name || 'Ruby Console Android Appium',
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### v0.24.1 2014-03-26
|
|
2
|
+
|
|
3
|
+
- [a07da28](https://github.com/appium/ruby_lib/commit/a07da28de1e7133c77070859c2c35d7bd2635684) Release 0.24.1
|
|
4
|
+
- [4718b0b](https://github.com/appium/ruby_lib/commit/4718b0b126748b14237ead15fd09812449512b12) Client should never send fastReset or skipUninstall
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
#### v0.24.0 2014-03-25
|
|
2
8
|
|
|
3
9
|
- [937f782](https://github.com/appium/ruby_lib/commit/937f7822bd5e248e2bdbc43a4602611d18df5d78) Release 0.24.0
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.24.
|
|
4
|
+
version: 0.24.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: 2014-03-
|
|
11
|
+
date: 2014-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|