Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI failures for latest version of ActiveSupport 7 #5211

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gemfiles/mongoid_7.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ if RUBY_VERSION >= "3.0"
gem "evt"
end
gem "fiber-storage"
gem "concurrent-ruby", "< 1.3.5"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ gem "sqlite3", "~> 1.4", platform: :ruby
gem "sequel"
gem "evt"
gem "async"
gem "concurrent-ruby", "< 1.3.5"

gemspec path: "../"
4 changes: 4 additions & 0 deletions gemfiles/rails_master.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@ if RUBY_ENGINE == "ruby" # This doesn't work on truffle-ruby because there's no
gem "libev_scheduler"
end
gem "async"
if RUBY_VERSION >= "3.4.1"
gem "csv"
gem "mutex_m"
end

gemspec path: "../"
Loading