Skip to content

Commit 5c94b64

Browse files
committed
deps: Add bundled gems to the dependencies of test app
Since Ruby 3.4, base64, bigdecimal, and drb gems have became the bundled gem. So they should be listed on the dependencies list. Note: The latest activesupport now depends on them. So it's also okay to upgrade it to the new one.
1 parent 51bea3f commit 5c94b64

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

test/app/Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ gem 'bcrypt'
1010

1111
gem 'rbs_rails', path: '../../'
1212

13-
gem 'mutex_m' # to run Rails6.1 under Ruby 3.4
13+
# to run Rails6.1 under Ruby 3.4
14+
gem 'base64'
15+
gem 'bigdecimal'
16+
gem 'drb'
17+
gem 'mutex_m'

test/app/Gemfile.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,16 @@ GEM
6868
tzinfo (~> 2.0)
6969
zeitwerk (~> 2.3)
7070
ast (2.4.2)
71+
base64 (0.2.0)
7172
bcrypt (3.1.16)
73+
bigdecimal (3.1.6)
7274
bootsnap (1.7.3)
7375
msgpack (~> 1.0)
7476
builder (3.2.4)
7577
concurrent-ruby (1.1.10)
7678
crass (1.0.6)
79+
drb (2.2.0)
80+
ruby2_keywords
7781
erubi (1.10.0)
7882
globalid (1.0.1)
7983
activesupport (>= 5.0)
@@ -133,6 +137,7 @@ GEM
133137
thor (~> 1.0)
134138
rake (13.0.3)
135139
rbs (3.1.0)
140+
ruby2_keywords (0.0.5)
136141
sprockets (4.0.2)
137142
concurrent-ruby (~> 1.0)
138143
rack (> 1, < 3)
@@ -153,8 +158,11 @@ PLATFORMS
153158
ruby
154159

155160
DEPENDENCIES
161+
base64
156162
bcrypt
163+
bigdecimal
157164
bootsnap
165+
drb
158166
mutex_m
159167
psych (< 4)
160168
puma

0 commit comments

Comments
 (0)