File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,15 @@ Commit based release not is [release_notes.md](./release_notes.md)
3
3
4
4
Release tags are https://github.com/appium/ruby_lib/releases .
5
5
6
+ ## [ Unreleased]
7
+ ### 1. Enhancements
8
+ - Bump the core library to 1.2.4
9
+ - The changelog is [ here] ( https://github.com/appium/ruby_lib_core/blob/master/CHANGELOG.md#124---2018-01-03 )
10
+
11
+ ### 2. Bug fixes
12
+
13
+ ### 3. Deprecations
14
+
6
15
## v9.8.2
7
16
### 1. Enhancements
8
17
- add ` shell ` command wrapped ` mobile: shell ` for Android [ #732 ] ( https://github.com/appium/ruby_lib/pull/732 )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
s . homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
14
14
s . require_paths = [ 'lib' ]
15
15
16
- s . add_runtime_dependency 'appium_lib_core' , '~> 1.2.3 '
16
+ s . add_runtime_dependency 'appium_lib_core' , '~> 1.2.4 '
17
17
s . add_runtime_dependency 'tomlrb' , '~> 1.1'
18
18
s . add_runtime_dependency 'nokogiri' , '~> 1.6' , '>= 1.6.6'
19
19
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ module Common
9
9
# @driver.get_log(:syslog) #=> [[Selenium::WebDriver::LogEntry]]
10
10
#
11
11
def get_log ( type )
12
- Appium :: Core :: Logs . new ( @driver . manage . logs ) . get type
12
+ @driver . logs . get type
13
13
end
14
14
15
15
# Get a list of available log types
@@ -21,7 +21,7 @@ def get_log(type)
21
21
# @driver.get_available_log_types #=> [:syslog, :crashlog, :performance]
22
22
#
23
23
def get_available_log_types
24
- Appium :: Core :: Logs . new ( @driver . manage . logs ) . available_types
24
+ @driver . logs . available_types
25
25
end
26
26
end # module Common
27
27
end # module Appium
You can’t perform that action at this time.
0 commit comments