Skip to content

Commit

Permalink
Add required gems for tests on Ruby 3.4
Browse files Browse the repository at this point in the history
Ruby 3.4 removed a couple of standard gems. Add them manually so the
tests work.
  • Loading branch information
tombruijn committed Dec 2, 2024
1 parent bb69004 commit 6fb18f8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
11 changes: 6 additions & 5 deletions gemfiles/padrino.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
source 'https://rubygems.org'
source "https://rubygems.org"

gem 'padrino', "~> 0.15"
gem 'rack', "~> 2"
gem 'sinatra', "~> 2"
gem "base64" # Ruby 3.4 requirement
gem "padrino", "~> 0.15"
gem "rack", "~> 2"
gem "sinatra", "~> 2"

gemspec :path => '../'
gemspec :path => "../"
3 changes: 3 additions & 0 deletions gemfiles/rails-7.0.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
source "https://rubygems.org"

gem "base64" # Ruby 3.4 requirement
gem "drb" # Ruby 3.4 requirement
gem "mutex_m" # Ruby 3.4 requirement
gem "rails", "~> 7.0.1"
gem "rake", "> 12.2"
gem "sidekiq"
Expand Down
1 change: 1 addition & 0 deletions gemfiles/webmachine2.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source "https://rubygems.org"

gem "mutex_m" # Ruby 3.4 requirement
gem "webmachine", "~> 2.0"
gem "webrick"

Expand Down

0 comments on commit 6fb18f8

Please sign in to comment.