Skip to content

Commit b7c4b90

Browse files
committed
Add bigdecimal gem for test
the activesupport gem depends on the base64 gem, which has been extracted as a bundled gem since Ruby 3.4. Let's install the base64 gem only for test.
1 parent 0db1ae6 commit b7c4b90

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ gem 'rake'
66
if RUBY_VERSION >= '3.4'
77
# the mongo gem depends on the base64 gem, which has been extracted as a bundled gem since Ruby 3.4.
88
gem 'base64'
9+
10+
# the activesupport gem depends on the base64 gem, which has been extracted as a bundled gem since Ruby 3.4.
11+
gem 'bigdecimal'
912
end
1013

1114
group(:test) do

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ GEM
88
remote: https://rubygems.org/
99
specs:
1010
base64 (0.2.0)
11+
bigdecimal (3.1.9)
1112
bson (5.0.2)
1213
byebug (11.1.3)
1314
coderay (1.1.3)
@@ -76,6 +77,7 @@ PLATFORMS
7677

7778
DEPENDENCIES
7879
base64
80+
bigdecimal
7981
byebug
8082
guard
8183
guard-bundler

0 commit comments

Comments
 (0)