appium_lib_core 2.3.2 → 2.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 33533e8d7934610ad0c43c6957765e40aab65f45
4
- data.tar.gz: e73ee98770907974b2220e57f9b949bd657d9beb
2
+ SHA256:
3
+ metadata.gz: 211e769114bdcc5cf37b5bdcb6d5665001949de6d8002c98e53bd69fd187f711
4
+ data.tar.gz: 22a680d7a6dc2afd7a525bce07b00cef0edc591e901b7dcca08229061878431f
5
5
  SHA512:
6
- metadata.gz: aaac599d8a33199041357f09d9ddb9355c1bb8bc6c0b04f8edbed7ebb5ed39c7caf99fd7f9254e939b1f5392582c6738f467039fb0982542a8132a40b279c668
7
- data.tar.gz: 58b70225c898eba780f5f4df8fc7d8ad1ed3edbe5e51b62df6f547774a2295e297d9a41efff8c3aed59f5354d6433e4a3910acd23b57464fe4bf18ca6f4a2cdb
6
+ metadata.gz: 3c396a762a44f2158f55dd04baed25642ddc3fbad7a5efec2c610b836c22b448199753a5ce842b9b0584a548068af3aa4636f5aa34b146821e0cc94ed460be9f
7
+ data.tar.gz: 8d2baa9487987d4d503133c8d6d41f223d009d54b8350f2cc0ef17bfe07399b052276ce16f8706dfbab81f542e2b410603f1e82a5eb7727dafc1a2d599551b73
@@ -9,6 +9,14 @@ Read `release_notes.md` for commit level details.
9
9
 
10
10
  ### Deprecations
11
11
 
12
+ ## [2.3.3] - 2019-01-22
13
+ ### Enhancements
14
+
15
+ ### Bug fixes
16
+ - Add `*args, &block` in method missing in `Selenium::WebDriver::Element` [#184](https://github.com/appium/ruby_lib_core/pull/184)
17
+
18
+ ### Deprecations
19
+
12
20
  ## [2.3.2] - 2019-01-20
13
21
  ### Enhancements
14
22
  - Add alias for some method calls
@@ -17,7 +25,7 @@ Read `release_notes.md` for commit level details.
17
25
  3. Locked: `@driver.locked?` in addition to `@driver.device_locked?`
18
26
 
19
27
  ### Bug fixes
20
- - Inherit CoreError for ServerError in order to handle it as an exception
28
+ - `ServerError` inherits `CoreError` in order to handle it as an exception
21
29
 
22
30
  ### Deprecations
23
31
 
@@ -28,7 +28,7 @@ module Appium
28
28
  # e.value
29
29
  # e.resource_id # call `e.attribute "resource-id"`
30
30
  #
31
- def method_missing(method_name)
31
+ def method_missing(method_name, *args, &block)
32
32
  ignore_list = [:to_hash]
33
33
  return if ignore_list.include? method_name
34
34
 
@@ -1,6 +1,6 @@
1
1
  module Appium
2
2
  module Core
3
- VERSION = '2.3.2'.freeze unless defined? ::Appium::Core::VERSION
4
- DATE = '2019-01-20'.freeze unless defined? ::Appium::Core::DATE
3
+ VERSION = '2.3.3'.freeze unless defined? ::Appium::Core::VERSION
4
+ DATE = '2019-01-22'.freeze unless defined? ::Appium::Core::DATE
5
5
  end
6
6
  end
@@ -1,3 +1,10 @@
1
+ #### v2.3.3 2019-01-22
2
+
3
+ - [867d55f](https://github.com/appium/ruby_lib_core/commit/867d55f2e77c17c3576a56df687fba0e02063530) Release 2.3.3
4
+ - [3f77722](https://github.com/appium/ruby_lib_core/commit/3f77722aef0c4e80f05904a01d28632cb07549ff) fix method_missing not having the correct signature (#184)
5
+ - [99579f8](https://github.com/appium/ruby_lib_core/commit/99579f8597e927cf0154afedbd916001d4d99e70) tweak changelog
6
+
7
+
1
8
  #### v2.3.2 2019-01-20
2
9
 
3
10
  - [77aa44a](https://github.com/appium/ruby_lib_core/commit/77aa44a930335d64dd8f8107f93f131f4983c578) Release 2.3.2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_lib_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuaki MATSUO
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-20 00:00:00.000000000 Z
11
+ date: 2019-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: selenium-webdriver
@@ -327,8 +327,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
327
327
  - !ruby/object:Gem::Version
328
328
  version: '0'
329
329
  requirements: []
330
- rubyforge_project:
331
- rubygems_version: 2.6.14
330
+ rubygems_version: 3.0.1
332
331
  signing_key:
333
332
  specification_version: 4
334
333
  summary: Minimal Ruby library for Appium.