Skip to content

Commit 0ff8d01

Browse files
committed
updated rails and install turbo-rails in order to reproduce issue when running with turbo-rails discovered in fresh rails 7 app setup
1 parent e238c72 commit 0ff8d01

File tree

4 files changed

+91
-218
lines changed

4 files changed

+91
-218
lines changed

Gemfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ gemspec
1111
# Git. Remember to move these dependencies to your gemspec before releasing
1212
# your gem to rubygems.org.
1313

14-
gem 'rails', '7.0.1'
14+
gem 'rails', '~> 7.0.1'
15+
16+
gem 'turbo-rails'
1517

1618
group :development, :test do
1719
gem 'rspec-rails', '~> 4.0.2'

Gemfile.lock

+66-64
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
11
PATH
22
remote: .
33
specs:
4-
matestack-ui-core (3.0.0.rc1)
4+
matestack-ui-core (3.0.0)
55
rails (>= 5.2)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
actioncable (7.0.1)
11-
actionpack (= 7.0.1)
12-
activesupport (= 7.0.1)
10+
actioncable (7.0.2.4)
11+
actionpack (= 7.0.2.4)
12+
activesupport (= 7.0.2.4)
1313
nio4r (~> 2.0)
1414
websocket-driver (>= 0.6.1)
15-
actionmailbox (7.0.1)
16-
actionpack (= 7.0.1)
17-
activejob (= 7.0.1)
18-
activerecord (= 7.0.1)
19-
activestorage (= 7.0.1)
20-
activesupport (= 7.0.1)
15+
actionmailbox (7.0.2.4)
16+
actionpack (= 7.0.2.4)
17+
activejob (= 7.0.2.4)
18+
activerecord (= 7.0.2.4)
19+
activestorage (= 7.0.2.4)
20+
activesupport (= 7.0.2.4)
2121
mail (>= 2.7.1)
2222
net-imap
2323
net-pop
2424
net-smtp
25-
actionmailer (7.0.1)
26-
actionpack (= 7.0.1)
27-
actionview (= 7.0.1)
28-
activejob (= 7.0.1)
29-
activesupport (= 7.0.1)
25+
actionmailer (7.0.2.4)
26+
actionpack (= 7.0.2.4)
27+
actionview (= 7.0.2.4)
28+
activejob (= 7.0.2.4)
29+
activesupport (= 7.0.2.4)
3030
mail (~> 2.5, >= 2.5.4)
3131
net-imap
3232
net-pop
3333
net-smtp
3434
rails-dom-testing (~> 2.0)
35-
actionpack (7.0.1)
36-
actionview (= 7.0.1)
37-
activesupport (= 7.0.1)
35+
actionpack (7.0.2.4)
36+
actionview (= 7.0.2.4)
37+
activesupport (= 7.0.2.4)
3838
rack (~> 2.0, >= 2.2.0)
3939
rack-test (>= 0.6.3)
4040
rails-dom-testing (~> 2.0)
4141
rails-html-sanitizer (~> 1.0, >= 1.2.0)
42-
actiontext (7.0.1)
43-
actionpack (= 7.0.1)
44-
activerecord (= 7.0.1)
45-
activestorage (= 7.0.1)
46-
activesupport (= 7.0.1)
42+
actiontext (7.0.2.4)
43+
actionpack (= 7.0.2.4)
44+
activerecord (= 7.0.2.4)
45+
activestorage (= 7.0.2.4)
46+
activesupport (= 7.0.2.4)
4747
globalid (>= 0.6.0)
4848
nokogiri (>= 1.8.5)
49-
actionview (7.0.1)
50-
activesupport (= 7.0.1)
49+
actionview (7.0.2.4)
50+
activesupport (= 7.0.2.4)
5151
builder (~> 3.1)
5252
erubi (~> 1.4)
5353
rails-dom-testing (~> 2.0)
5454
rails-html-sanitizer (~> 1.1, >= 1.2.0)
55-
activejob (7.0.1)
56-
activesupport (= 7.0.1)
55+
activejob (7.0.2.4)
56+
activesupport (= 7.0.2.4)
5757
globalid (>= 0.3.6)
58-
activemodel (7.0.1)
59-
activesupport (= 7.0.1)
60-
activerecord (7.0.1)
61-
activemodel (= 7.0.1)
62-
activesupport (= 7.0.1)
63-
activestorage (7.0.1)
64-
actionpack (= 7.0.1)
65-
activejob (= 7.0.1)
66-
activerecord (= 7.0.1)
67-
activesupport (= 7.0.1)
58+
activemodel (7.0.2.4)
59+
activesupport (= 7.0.2.4)
60+
activerecord (7.0.2.4)
61+
activemodel (= 7.0.2.4)
62+
activesupport (= 7.0.2.4)
63+
activestorage (7.0.2.4)
64+
actionpack (= 7.0.2.4)
65+
activejob (= 7.0.2.4)
66+
activerecord (= 7.0.2.4)
67+
activesupport (= 7.0.2.4)
6868
marcel (~> 1.0)
6969
mini_mime (>= 1.1.0)
70-
activesupport (7.0.1)
70+
activesupport (7.0.2.4)
7171
concurrent-ruby (~> 1.0, >= 1.0.2)
7272
i18n (>= 1.6, < 2)
7373
minitest (>= 5.1)
@@ -86,7 +86,7 @@ GEM
8686
xpath (~> 3.2)
8787
childprocess (3.0.0)
8888
coderay (1.1.3)
89-
concurrent-ruby (1.1.9)
89+
concurrent-ruby (1.1.10)
9090
crack (0.4.5)
9191
rexml
9292
crass (1.0.6)
@@ -100,18 +100,17 @@ GEM
100100
globalid (1.0.0)
101101
activesupport (>= 5.0)
102102
hashdiff (1.0.1)
103-
i18n (1.9.1)
103+
i18n (1.10.0)
104104
concurrent-ruby (~> 1.0)
105-
io-wait (0.2.1)
106-
loofah (2.13.0)
105+
loofah (2.17.0)
107106
crass (~> 1.0.2)
108107
nokogiri (>= 1.5.9)
109108
mail (2.7.1)
110109
mini_mime (>= 0.1.1)
111110
marcel (1.0.2)
112111
method_source (1.0.0)
113112
mini_mime (1.1.2)
114-
mini_portile2 (2.7.1)
113+
mini_portile2 (2.8.0)
115114
minitest (5.15.0)
116115
net-imap (0.2.3)
117116
digest
@@ -121,16 +120,15 @@ GEM
121120
digest
122121
net-protocol
123122
timeout
124-
net-protocol (0.1.2)
125-
io-wait
123+
net-protocol (0.1.3)
126124
timeout
127125
net-smtp (0.3.1)
128126
digest
129127
net-protocol
130128
timeout
131129
nio4r (2.5.8)
132-
nokogiri (1.13.1)
133-
mini_portile2 (~> 2.7.0)
130+
nokogiri (1.13.4)
131+
mini_portile2 (~> 2.8.0)
134132
racc (~> 1.4)
135133
pg (1.2.3)
136134
pry (0.13.1)
@@ -150,28 +148,28 @@ GEM
150148
rack
151149
rack-test (1.1.0)
152150
rack (>= 1.0, < 3)
153-
rails (7.0.1)
154-
actioncable (= 7.0.1)
155-
actionmailbox (= 7.0.1)
156-
actionmailer (= 7.0.1)
157-
actionpack (= 7.0.1)
158-
actiontext (= 7.0.1)
159-
actionview (= 7.0.1)
160-
activejob (= 7.0.1)
161-
activemodel (= 7.0.1)
162-
activerecord (= 7.0.1)
163-
activestorage (= 7.0.1)
164-
activesupport (= 7.0.1)
151+
rails (7.0.2.4)
152+
actioncable (= 7.0.2.4)
153+
actionmailbox (= 7.0.2.4)
154+
actionmailer (= 7.0.2.4)
155+
actionpack (= 7.0.2.4)
156+
actiontext (= 7.0.2.4)
157+
actionview (= 7.0.2.4)
158+
activejob (= 7.0.2.4)
159+
activemodel (= 7.0.2.4)
160+
activerecord (= 7.0.2.4)
161+
activestorage (= 7.0.2.4)
162+
activesupport (= 7.0.2.4)
165163
bundler (>= 1.15.0)
166-
railties (= 7.0.1)
164+
railties (= 7.0.2.4)
167165
rails-dom-testing (2.0.3)
168166
activesupport (>= 4.2.0)
169167
nokogiri (>= 1.6)
170168
rails-html-sanitizer (1.4.2)
171169
loofah (~> 2.3)
172-
railties (7.0.1)
173-
actionpack (= 7.0.1)
174-
activesupport (= 7.0.1)
170+
railties (7.0.2.4)
171+
actionpack (= 7.0.2.4)
172+
activesupport (= 7.0.2.4)
175173
method_source
176174
rake (>= 12.2)
177175
thor (~> 1.0)
@@ -210,6 +208,9 @@ GEM
210208
strscan (3.0.1)
211209
thor (1.2.1)
212210
timeout (0.2.0)
211+
turbo-rails (1.0.1)
212+
actionpack (>= 6.0.0)
213+
railties (>= 6.0.0)
213214
tzinfo (2.0.4)
214215
concurrent-ruby (~> 1.0)
215216
webmock (3.13.0)
@@ -240,10 +241,11 @@ DEPENDENCIES
240241
pry-byebug
241242
pry-rails
242243
puma
243-
rails (= 7.0.1)
244+
rails (~> 7.0.1)
244245
rspec-rails (~> 4.0.2)
245246
selenium-webdriver
246247
simplecov
248+
turbo-rails
247249
webmock
248250
webpacker (~> 5.0)
249251

0 commit comments

Comments
 (0)