Skip to content

Commit 903cf60

Browse files
chore(deps): update rubocop requirement from 1.87.0 to 1.88.0 (#684)
* chore(deps): update rubocop requirement from 1.87.0 to 1.88.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](rubocop/rubocop@v1.87.0...v1.88.0) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.88.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fix rubocop --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kazuaki Matsuo <fly.49.89.over@gmail.com>
1 parent 79cbc8e commit 903cf60

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ gem 'minitest', '~> 5.0'
88
gem 'minitest-reporters', '~> 1.1'
99
gem 'parallel_tests'
1010
gem 'rake', '~> 13.0'
11-
gem 'rubocop', '1.87.0'
11+
gem 'rubocop', '1.88.0'
1212
gem 'simplecov'
1313
gem 'steep', '~> 1.10.0'
1414
gem 'webmock', '~> 3.26.0'

lib/appium_lib_core/common/device/app_management.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def background_app(duration = 0)
2929

3030
def install_app(path, options = {}) # steep:ignore
3131
args = { appPath: path }
32-
args[:options] = options unless options&.empty?
32+
args[:options] = options unless options && options.empty?
3333

3434
execute :install_app, {}, args
3535
end

0 commit comments

Comments
 (0)