Skip to content

Commit

Permalink
fix: LoadError in capybara
Browse files Browse the repository at this point in the history
Rack 3 does not ship with rackup handlers anymore, instead the separate
rackup gem is required.
  • Loading branch information
jgraichen committed Oct 23, 2023
1 parent 7fe3802 commit 741080b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ group :development do
end

group :test do
gem 'capybara', '~> 3.35'
gem 'rspec', '~> 3.5'
gem 'capybara', '~> 3.39'
gem 'rackup'
gem 'rspec', '~> 3.12'
gem 'rubocop-config', github: 'jgraichen/rubocop-config', ref: 'v7', require: false
gem 'selenium-webdriver', '~> 3.142'
gem 'selenium-webdriver', '~> 4.14'
gem 'webrick'
end

0 comments on commit 741080b

Please sign in to comment.