Skip to content

Commit

Permalink
Merge pull request #5886 from mamhoff/use-puma-master-branch
Browse files Browse the repository at this point in the history
Fix test suite by running Puma's `master` branch
  • Loading branch information
kennyadsl authored Oct 25, 2024
2 parents e509aa9 + ffb9ef4 commit 25a41bf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ gem 'pg', '~> 1.0', require: false if dbs.match?(/all|postgres/)
gem 'fast_sqlite', require: false if dbs.match?(/all|sqlite/)
gem 'sqlite3', '~> 1.4', require: false if dbs.match?(/all|sqlite/)


gem 'database_cleaner', '~> 2.0', require: false
gem 'rspec-activemodel-mocks', '~> 1.1', require: false
gem 'rspec-rails', '~> 6.0.3', require: false
Expand All @@ -30,7 +31,12 @@ gem 'simplecov-cobertura', require: false
gem 'rack', '< 3', require: false
gem 'rake', require: false, groups: [:lint, :release]
gem 'rails-controller-testing', require: false
gem 'puma', '< 7', require: false

# Temporarily use the master branch of puma until the next release
# The current release, 6.4.3, has bug that causes Capybara to crash.
# See https://github.com/puma/puma/pull/3532
gem 'puma', github: 'puma/puma', branch: 'master', require: false

gem 'i18n-tasks', '~> 0.9', require: false
gem 'rspec_junit_formatter', require: false
gem 'yard', require: false
Expand Down

0 comments on commit 25a41bf

Please sign in to comment.