Skip to content

Commit 178fbe4

Browse files
committed
Install zeitwerk 2.6 for now
I'm having a lot of trouble getting this to work with appraisal's install_if which is failing. For now install zeitwerk 2.6 since 2.7 requires Ruby 3.2+.
1 parent 747962f commit 178fbe4

12 files changed

+85
-73
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ gem "appraisal"
77
gem "rails", "~> 6.1.0"
88
gem "sqlite3"
99
gem "debug", ">= 1.0.0"
10+
gem "zeitwerk", "~> 2.6"

Gemfile.lock

Lines changed: 74 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -8,60 +8,60 @@ PATH
88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
actioncable (6.1.7.8)
12-
actionpack (= 6.1.7.8)
13-
activesupport (= 6.1.7.8)
11+
actioncable (6.1.7.10)
12+
actionpack (= 6.1.7.10)
13+
activesupport (= 6.1.7.10)
1414
nio4r (~> 2.0)
1515
websocket-driver (>= 0.6.1)
16-
actionmailbox (6.1.7.8)
17-
actionpack (= 6.1.7.8)
18-
activejob (= 6.1.7.8)
19-
activerecord (= 6.1.7.8)
20-
activestorage (= 6.1.7.8)
21-
activesupport (= 6.1.7.8)
16+
actionmailbox (6.1.7.10)
17+
actionpack (= 6.1.7.10)
18+
activejob (= 6.1.7.10)
19+
activerecord (= 6.1.7.10)
20+
activestorage (= 6.1.7.10)
21+
activesupport (= 6.1.7.10)
2222
mail (>= 2.7.1)
23-
actionmailer (6.1.7.8)
24-
actionpack (= 6.1.7.8)
25-
actionview (= 6.1.7.8)
26-
activejob (= 6.1.7.8)
27-
activesupport (= 6.1.7.8)
23+
actionmailer (6.1.7.10)
24+
actionpack (= 6.1.7.10)
25+
actionview (= 6.1.7.10)
26+
activejob (= 6.1.7.10)
27+
activesupport (= 6.1.7.10)
2828
mail (~> 2.5, >= 2.5.4)
2929
rails-dom-testing (~> 2.0)
30-
actionpack (6.1.7.8)
31-
actionview (= 6.1.7.8)
32-
activesupport (= 6.1.7.8)
30+
actionpack (6.1.7.10)
31+
actionview (= 6.1.7.10)
32+
activesupport (= 6.1.7.10)
3333
rack (~> 2.0, >= 2.0.9)
3434
rack-test (>= 0.6.3)
3535
rails-dom-testing (~> 2.0)
3636
rails-html-sanitizer (~> 1.0, >= 1.2.0)
37-
actiontext (6.1.7.8)
38-
actionpack (= 6.1.7.8)
39-
activerecord (= 6.1.7.8)
40-
activestorage (= 6.1.7.8)
41-
activesupport (= 6.1.7.8)
37+
actiontext (6.1.7.10)
38+
actionpack (= 6.1.7.10)
39+
activerecord (= 6.1.7.10)
40+
activestorage (= 6.1.7.10)
41+
activesupport (= 6.1.7.10)
4242
nokogiri (>= 1.8.5)
43-
actionview (6.1.7.8)
44-
activesupport (= 6.1.7.8)
43+
actionview (6.1.7.10)
44+
activesupport (= 6.1.7.10)
4545
builder (~> 3.1)
4646
erubi (~> 1.4)
4747
rails-dom-testing (~> 2.0)
4848
rails-html-sanitizer (~> 1.1, >= 1.2.0)
49-
activejob (6.1.7.8)
50-
activesupport (= 6.1.7.8)
49+
activejob (6.1.7.10)
50+
activesupport (= 6.1.7.10)
5151
globalid (>= 0.3.6)
52-
activemodel (6.1.7.8)
53-
activesupport (= 6.1.7.8)
54-
activerecord (6.1.7.8)
55-
activemodel (= 6.1.7.8)
56-
activesupport (= 6.1.7.8)
57-
activestorage (6.1.7.8)
58-
actionpack (= 6.1.7.8)
59-
activejob (= 6.1.7.8)
60-
activerecord (= 6.1.7.8)
61-
activesupport (= 6.1.7.8)
52+
activemodel (6.1.7.10)
53+
activesupport (= 6.1.7.10)
54+
activerecord (6.1.7.10)
55+
activemodel (= 6.1.7.10)
56+
activesupport (= 6.1.7.10)
57+
activestorage (6.1.7.10)
58+
actionpack (= 6.1.7.10)
59+
activejob (= 6.1.7.10)
60+
activerecord (= 6.1.7.10)
61+
activesupport (= 6.1.7.10)
6262
marcel (~> 1.0)
6363
mini_mime (>= 1.1.0)
64-
activesupport (6.1.7.8)
64+
activesupport (6.1.7.10)
6565
concurrent-ruby (~> 1.0, >= 1.0.2)
6666
i18n (>= 1.6, < 2)
6767
minitest (>= 5.1)
@@ -73,25 +73,25 @@ GEM
7373
thor (>= 0.14.0)
7474
bigdecimal (3.1.8)
7575
builder (3.3.0)
76-
concurrent-ruby (1.3.3)
76+
concurrent-ruby (1.3.4)
7777
crass (1.0.6)
78-
date (3.3.4)
78+
date (3.4.0)
7979
debug (1.9.2)
8080
irb (~> 1.10)
8181
reline (>= 0.3.8)
8282
erubi (1.13.0)
8383
globalid (1.2.1)
8484
activesupport (>= 6.1)
85-
google-protobuf (4.27.2)
85+
google-protobuf (4.28.3)
8686
bigdecimal
8787
rake (>= 13)
88-
i18n (1.14.5)
88+
i18n (1.14.6)
8989
concurrent-ruby (~> 1.0)
9090
io-console (0.7.2)
91-
irb (1.14.0)
91+
irb (1.14.1)
9292
rdoc (>= 4.0.0)
9393
reline (>= 0.4.2)
94-
loofah (2.22.0)
94+
loofah (2.23.1)
9595
crass (~> 1.0.2)
9696
nokogiri (>= 1.12.0)
9797
mail (2.8.1)
@@ -103,8 +103,8 @@ GEM
103103
method_source (1.1.0)
104104
mini_mime (1.1.5)
105105
mini_portile2 (2.8.7)
106-
minitest (5.24.1)
107-
net-imap (0.4.14)
106+
minitest (5.25.1)
107+
net-imap (0.5.1)
108108
date
109109
net-protocol
110110
net-pop (0.1.2)
@@ -113,30 +113,30 @@ GEM
113113
timeout
114114
net-smtp (0.5.0)
115115
net-protocol
116-
nio4r (2.7.3)
116+
nio4r (2.7.4)
117117
nokogiri (1.16.7)
118118
mini_portile2 (~> 2.8.2)
119119
racc (~> 1.4)
120-
psych (5.1.2)
120+
psych (5.2.0)
121121
stringio
122122
racc (1.8.1)
123-
rack (2.2.9)
123+
rack (2.2.10)
124124
rack-test (2.1.0)
125125
rack (>= 1.3)
126-
rails (6.1.7.8)
127-
actioncable (= 6.1.7.8)
128-
actionmailbox (= 6.1.7.8)
129-
actionmailer (= 6.1.7.8)
130-
actionpack (= 6.1.7.8)
131-
actiontext (= 6.1.7.8)
132-
actionview (= 6.1.7.8)
133-
activejob (= 6.1.7.8)
134-
activemodel (= 6.1.7.8)
135-
activerecord (= 6.1.7.8)
136-
activestorage (= 6.1.7.8)
137-
activesupport (= 6.1.7.8)
126+
rails (6.1.7.10)
127+
actioncable (= 6.1.7.10)
128+
actionmailbox (= 6.1.7.10)
129+
actionmailer (= 6.1.7.10)
130+
actionpack (= 6.1.7.10)
131+
actiontext (= 6.1.7.10)
132+
actionview (= 6.1.7.10)
133+
activejob (= 6.1.7.10)
134+
activemodel (= 6.1.7.10)
135+
activerecord (= 6.1.7.10)
136+
activestorage (= 6.1.7.10)
137+
activesupport (= 6.1.7.10)
138138
bundler (>= 1.15.0)
139-
railties (= 6.1.7.8)
139+
railties (= 6.1.7.10)
140140
sprockets-rails (>= 2.0.0)
141141
rails-dom-testing (2.2.0)
142142
activesupport (>= 5.0.0)
@@ -145,38 +145,38 @@ GEM
145145
rails-html-sanitizer (1.6.0)
146146
loofah (~> 2.21)
147147
nokogiri (~> 1.14)
148-
railties (6.1.7.8)
149-
actionpack (= 6.1.7.8)
150-
activesupport (= 6.1.7.8)
148+
railties (6.1.7.10)
149+
actionpack (= 6.1.7.10)
150+
activesupport (= 6.1.7.10)
151151
method_source
152152
rake (>= 12.2)
153153
thor (~> 1.0)
154154
rake (13.2.1)
155155
rdoc (6.7.0)
156156
psych (>= 4.0.0)
157-
reline (0.5.9)
157+
reline (0.5.11)
158158
io-console (~> 0.5)
159-
sass-embedded (1.77.8)
160-
google-protobuf (~> 4.26)
159+
sass-embedded (1.80.6)
160+
google-protobuf (~> 4.28)
161161
rake (>= 13)
162162
sprockets (4.2.1)
163163
concurrent-ruby (~> 1.0)
164164
rack (>= 2.2.4, < 4)
165-
sprockets-rails (3.5.1)
165+
sprockets-rails (3.5.2)
166166
actionpack (>= 6.1)
167167
activesupport (>= 6.1)
168168
sprockets (>= 3.0.0)
169-
sqlite3 (1.7.3)
169+
sqlite3 (2.2.0)
170170
mini_portile2 (~> 2.8.0)
171-
stringio (3.1.1)
172-
thor (1.3.1)
173-
timeout (0.4.1)
171+
stringio (3.1.2)
172+
thor (1.3.2)
173+
timeout (0.4.2)
174174
tzinfo (2.0.6)
175175
concurrent-ruby (~> 1.0)
176176
websocket-driver (0.7.6)
177177
websocket-extensions (>= 0.1.0)
178178
websocket-extensions (0.1.5)
179-
zeitwerk (2.6.17)
179+
zeitwerk (2.7.1)
180180

181181
PLATFORMS
182182
ruby
@@ -187,6 +187,7 @@ DEPENDENCIES
187187
debug (>= 1.0.0)
188188
rails (~> 6.1.0)
189189
sqlite3
190+
zeitwerk (~> 2.6)
190191

191192
BUNDLED WITH
192193
2.5.23

gemfiles/rails_7_0_propshaft.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ gem "appraisal"
66
gem "rails", "~> 7.0.0"
77
gem "sqlite3", "~> 1.7"
88
gem "debug", ">= 1.0.0"
9+
gem "zeitwerk", "~> 2.6"
910
gem "propshaft"
1011

1112
gemspec path: "../"

gemfiles/rails_7_0_propshaft.gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ DEPENDENCIES
197197
propshaft
198198
rails (~> 7.0.0)
199199
sqlite3 (~> 1.7)
200+
zeitwerk (~> 2.6)
200201

201202
BUNDLED WITH
202203
2.5.23

gemfiles/rails_7_0_sprockets.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ gem "appraisal"
66
gem "rails", "~> 7.0.0"
77
gem "sqlite3", "~> 1.7"
88
gem "debug", ">= 1.0.0"
9+
gem "zeitwerk", "~> 2.6"
910
gem "sprockets-rails"
1011

1112
gemspec path: "../"

gemfiles/rails_7_0_sprockets.gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ DEPENDENCIES
199199
rails (~> 7.0.0)
200200
sprockets-rails
201201
sqlite3 (~> 1.7)
202+
zeitwerk (~> 2.6)
202203

203204
BUNDLED WITH
204205
2.5.23

gemfiles/rails_7_1_propshaft.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ gem "appraisal"
66
gem "rails", "~> 7.1.0"
77
gem "sqlite3"
88
gem "debug", ">= 1.0.0"
9+
gem "zeitwerk", "~> 2.6"
910
gem "propshaft"
1011

1112
gemspec path: "../"

gemfiles/rails_7_1_propshaft.gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ DEPENDENCIES
220220
propshaft
221221
rails (~> 7.1.0)
222222
sqlite3
223+
zeitwerk (~> 2.6)
223224

224225
BUNDLED WITH
225226
2.5.23

gemfiles/rails_7_1_sprockets.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ gem "appraisal"
66
gem "rails", "~> 7.1.0"
77
gem "sqlite3"
88
gem "debug", ">= 1.0.0"
9+
gem "zeitwerk", "~> 2.6"
910
gem "sprockets-rails"
1011

1112
gemspec path: "../"

gemfiles/rails_7_1_sprockets.gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ DEPENDENCIES
222222
rails (~> 7.1.0)
223223
sprockets-rails
224224
sqlite3
225+
zeitwerk (~> 2.6)
225226

226227
BUNDLED WITH
227228
2.5.23

0 commit comments

Comments
 (0)