mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-31 11:37:14 +00:00
Allow use of Puma 6.0.0 or later (#38135).
Capybara >= 3.39.0 supports Puma 6.0. git-svn-id: https://svn.redmine.org/redmine/trunk@22011 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
4819950b75
commit
b7078d78dd
5
Gemfile
5
Gemfile
@ -98,9 +98,8 @@ group :test do
|
||||
gem 'simplecov', '~> 0.22.0', :require => false
|
||||
gem "ffi", platforms: [:mingw, :x64_mingw, :mswin]
|
||||
# For running system tests
|
||||
# TODO: Remove version specification once Capybara supports Puma 6
|
||||
gem 'puma', '< 6.0.0'
|
||||
gem 'capybara', '~> 3.36.0'
|
||||
gem 'puma', (Gem.ruby_version < Gem::Version.new('2.7') ? '< 6.0.0' : '>= 0')
|
||||
gem 'capybara', (Gem.ruby_version < Gem::Version.new('2.7') ? '~> 3.36.0' : '~> 3.38.0')
|
||||
gem "selenium-webdriver", "~> 3.142.7"
|
||||
gem 'webdrivers', '4.6.1', require: false
|
||||
# RuboCop
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user