Skip to content

Commit

Permalink
Use Rack version < 3 on edge Rails (#431)
Browse files Browse the repository at this point in the history
There is some test failure when running against edge Rails, due to the
dependencies installing Rack 3 which is [not yet supported][1]. Pinning
our Rack version prevents the failures.

Once the linked Rails PR has landed, we can remove this constraint.

[1]: rails/rails#46594
  • Loading branch information
atosbucket committed Feb 10, 2023
1 parent 7f22c47 commit 31eabdc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile
Expand Up @@ -17,6 +17,10 @@ gem 'rake'
gem 'byebug'
gem 'puma'

# For edge Rails, don't use Rack 3 yet.
# Remove this when https://github.com/rails/rails/pull/46594 has merged.
gem 'rack', '< 3'

group :development, :test do
gem 'importmap-rails'
end
Expand Down

0 comments on commit 31eabdc

Please sign in to comment.