Skip to content

Commit

Permalink
Merge branch 'use-puma-master-branch' into import-solidus-friendly-pr…
Browse files Browse the repository at this point in the history
…omotions
  • Loading branch information
mamhoff committed Oct 25, 2024
2 parents 39ca739 + ffb9ef4 commit 21b59e8
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 21b59e8

Please sign in to comment.