Skip to content

Commit b0685b8

Browse files
committed
Add base64 / mutex_m dependencies for Rails 6.1
These are required for Ruby 3.4 support, which extracts `base64` / `mutex_m` into bundled gem. The maintained versions of Rails have the dependencies updated.
1 parent a6b16dc commit b0685b8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/ruby.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
- gemfiles/Gemfile.rails-7.1.x
2727
- gemfiles/Gemfile.rails-main
2828
exclude:
29+
# Rails 6.1 are in mRuby 3.0 is not supported by Rails main (requires at least Ruby 3.1)
30+
- ruby_version: head
31+
gemfile: gemfiles/Gemfile.rails-6.1.x
2932
# Ruby 3.0 is not supported by Rails main (requires at least Ruby 3.1)
3033
- ruby_version: '3.0'
3134
gemfile: gemfiles/Gemfile.rails-main

gemfiles/Gemfile.rails-6.1.x

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ gem 'test_declarative', '0.0.6'
88
gem 'rake'
99
gem 'minitest', '~> 5.14'
1010
gem 'racc'
11+
gem 'base64'
12+
gem 'mutex_m'
1113

1214
platforms :mri do
1315
gem 'oj'

0 commit comments

Comments
 (0)