diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2023-10-29 11:58:15 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2023-10-29 11:58:15 +0000 |
commit | 3552ee851b245a2ba422cb31005cff5772f63d8c (patch) | |
tree | 4ea56e0e39d61fca8adc4043ca363dba60f9c946 /Gemfile | |
parent | 67c268476ab38d7e1fa70ae02cd348da702a679a (diff) | |
download | redmine-3552ee851b245a2ba422cb31005cff5772f63d8c.tar.gz redmine-3552ee851b245a2ba422cb31005cff5772f63d8c.zip |
Merged r22397 to 5.1-stable (#37558).
git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@22398 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -99,9 +99,13 @@ group :test do gem "ffi", platforms: [:mingw, :x64_mingw, :mswin] # For running system tests gem 'puma' - gem 'capybara', '~> 3.38.0' - gem "selenium-webdriver", "~> 3.142.7" - gem 'webdrivers', '4.6.1', require: false + gem "capybara", ">= 3.39" + if Gem.ruby_version < Gem::Version.new('3.0') + gem "selenium-webdriver", "<= 4.9.0" + gem "webdrivers", require: false + else + gem "selenium-webdriver", ">= 4.11.0" + end # RuboCop gem 'rubocop', '~> 1.57.0', require: false gem 'rubocop-performance', '~> 1.19.0', require: false |