Skip to content

Commit 8f5d528

Browse files
committed
[CI] Explicitly bundle gemfied stdlib gems
1 parent 11e26ba commit 8f5d528

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Diff for: .github/workflows/ruby.yml

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
rails-version: '7.2'
6161

6262
env:
63+
RUBY_VERSION: ${{ matrix.ruby-version }}
6364
RAILS_VERSION: ${{ matrix.rails-version }}
6465
steps:
6566
- uses: actions/checkout@v4

Diff for: Gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,10 @@ if ENV['RAILS_VERSION']
1010
else
1111
gem 'rails'
1212
end
13+
14+
if ENV['RUBY_VERSION'] >= '3.3'
15+
gem 'mutex_m'
16+
gem 'base64'
17+
gem 'bigdecimal'
18+
gem 'drb'
19+
end

0 commit comments

Comments
 (0)