From 9d382edc3dd915d1b63108d0488147d345e20610 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Jun 2025 11:37:31 +0000 Subject: [PATCH 1/2] chore(deps): update rubocop requirement from 1.75.8 to 1.76.0 Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.75.8...v1.76.0) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.76.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 229b698a..e3c7f06b 100644 --- a/Gemfile +++ b/Gemfile @@ -8,7 +8,7 @@ gem 'minitest', '~> 5.0' gem 'minitest-reporters', '~> 1.1' gem 'parallel_tests' gem 'rake', '~> 13.0' -gem 'rubocop', '1.75.8' +gem 'rubocop', '1.76.0' gem 'simplecov' gem 'steep', '~> 1.9.3' gem 'webmock', '~> 3.25.0' From 9372a2ecabfcb8c8efe29d68061b84f47b0b7026 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Wed, 4 Jun 2025 22:42:36 -0700 Subject: [PATCH 2/2] update disable item --- lib/appium_lib_core/common/device/keyboard.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/appium_lib_core/common/device/keyboard.rb b/lib/appium_lib_core/common/device/keyboard.rb index 43ef52f8..7a1c26b5 100644 --- a/lib/appium_lib_core/common/device/keyboard.rb +++ b/lib/appium_lib_core/common/device/keyboard.rb @@ -25,7 +25,7 @@ def hide_keyboard(close_key = nil) execute_script 'mobile:hideKeyboard', option end - def is_keyboard_shown # rubocop:disable Naming/PredicateName + def is_keyboard_shown # rubocop:disable Naming/PredicatePrefix execute_script 'mobile:isKeyboardShown', {} end end # module Keyboard