Skip to content

Commit

Permalink
Add base64 / mutex_m dependencies for Rails 6.1
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
voxik committed Dec 10, 2024
1 parent a6b16dc commit b0685b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- gemfiles/Gemfile.rails-7.1.x
- gemfiles/Gemfile.rails-main
exclude:
# Rails 6.1 are in mRuby 3.0 is not supported by Rails main (requires at least Ruby 3.1)
- ruby_version: head
gemfile: gemfiles/Gemfile.rails-6.1.x
# Ruby 3.0 is not supported by Rails main (requires at least Ruby 3.1)
- ruby_version: '3.0'
gemfile: gemfiles/Gemfile.rails-main
Expand Down
2 changes: 2 additions & 0 deletions gemfiles/Gemfile.rails-6.1.x
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ gem 'test_declarative', '0.0.6'
gem 'rake'
gem 'minitest', '~> 5.14'
gem 'racc'
gem 'base64'
gem 'mutex_m'

platforms :mri do
gem 'oj'
Expand Down

0 comments on commit b0685b8

Please sign in to comment.