質問編集履歴
3
元に戻しました
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
「git push heroku masterができない」の続き
|
test
CHANGED
@@ -1,3 +1,321 @@
|
|
1
|
+
### git push heroku masterを行うとエラーになります
|
2
|
+
|
3
|
+
前回と質問内容は同じなのですが、Gemfileを追加で添付しようと思ったのですが、文字数の上限だったそうで、前回の質問に添付することができなかったので、こちらにGemfileを添付します。
|
4
|
+
|
5
|
+
お手数をおかけしますが、こちらの質問もみていただけると幸いです。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
### 発生している問題・エラーメッセージ
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
```
|
14
|
+
|
15
|
+
「git push heroku masterができない」という質問がありますので、そちらを確認していただけると幸いです
|
16
|
+
|
17
|
+
```
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
### Gemfile
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
source 'https://rubygems.org'
|
28
|
+
|
29
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
ruby '2.6.5'
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
38
|
+
|
39
|
+
gem 'rails', '~> 6.0.0'
|
40
|
+
|
41
|
+
# Use mysql as the database for Active Record
|
42
|
+
|
43
|
+
gem 'mysql2', '>= 0.4.4'
|
44
|
+
|
45
|
+
# Use Puma as the app server
|
46
|
+
|
47
|
+
gem 'puma', '~> 3.11'
|
48
|
+
|
49
|
+
# Use SCSS for stylesheets
|
50
|
+
|
51
|
+
gem 'sass-rails', '~> 5'
|
52
|
+
|
53
|
+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
54
|
+
|
55
|
+
gem 'webpacker', '~> 4.0'
|
56
|
+
|
57
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
58
|
+
|
59
|
+
gem 'turbolinks', '~> 5'
|
60
|
+
|
61
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
62
|
+
|
63
|
+
gem 'jbuilder', '~> 2.7'
|
64
|
+
|
65
|
+
# Use Redis adapter to run Action Cable in production
|
66
|
+
|
67
|
+
# gem 'redis', '~> 4.0'
|
68
|
+
|
69
|
+
# Use Active Model has_secure_password
|
70
|
+
|
71
|
+
# gem 'bcrypt', '~> 3.1.7'
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
# Use Active Storage variant
|
76
|
+
|
77
|
+
# gem 'image_processing', '~> 1.2'
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
# Reduces boot times through caching; required in config/boot.rb
|
82
|
+
|
83
|
+
gem 'bootsnap', '>= 1.4.2', require: false
|
84
|
+
|
85
|
+
group :development, :test do
|
86
|
+
|
87
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
88
|
+
|
89
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
90
|
+
|
91
|
+
gem 'rspec-rails', '~> 4.0.0'
|
92
|
+
|
93
|
+
gem 'factory_bot_rails'
|
94
|
+
|
95
|
+
gem 'faker'
|
96
|
+
|
97
|
+
end
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
group :development do
|
102
|
+
|
103
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
104
|
+
|
105
|
+
gem 'web-console', '>= 3.3.0'
|
106
|
+
|
107
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
108
|
+
|
109
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
110
|
+
|
111
|
+
gem 'spring'
|
112
|
+
|
113
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
114
|
+
|
115
|
+
end
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
group :test do
|
120
|
+
|
121
|
+
# Adds support for Capybara system testing and selenium driver
|
122
|
+
|
123
|
+
gem 'capybara', '>= 2.15'
|
124
|
+
|
125
|
+
gem 'selenium-webdriver'
|
126
|
+
|
127
|
+
# Easy installation and use of web drivers to run system tests with browsers
|
128
|
+
|
129
|
+
gem 'webdrivers'
|
130
|
+
|
131
|
+
end
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
136
|
+
|
137
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
gem 'devise'
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
gem 'mini_magick'
|
146
|
+
|
147
|
+
gem 'image_processing', '~> 1.2'
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
gem 'active_hash'
|
152
|
+
|
153
|
+
```
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
### 試したこと
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
heroku bundlerのバージョンが2.2.21だったので、このバージョンい合わせた。(2.1.4だったバージョンを)
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
### 補足情報(FW/ツールのバージョンなど)
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
```
|
170
|
+
|
171
|
+
yukahayuusatoru@TokonamugonoAir b_blog % git push heroku master
|
172
|
+
|
173
|
+
Enumerating objects: 67, done.
|
174
|
+
|
175
|
+
Counting objects: 100% (67/67), done.
|
176
|
+
|
177
|
+
Delta compression using up to 8 threads
|
178
|
+
|
179
|
+
Compressing objects: 100% (53/53), done.
|
180
|
+
|
181
|
+
Writing objects: 100% (54/54), 6.05 KiB | 1.21 MiB/s, done.
|
182
|
+
|
183
|
+
Total 54 (delta 37), reused 0 (delta 0), pack-reused 0
|
184
|
+
|
185
|
+
remote: Compressing source files... done.
|
186
|
+
|
187
|
+
remote: Building source:
|
188
|
+
|
189
|
+
remote:
|
190
|
+
|
191
|
+
remote: -----> Building on the Heroku-18 stack
|
192
|
+
|
193
|
+
remote: -----> Using buildpack: heroku/ruby
|
194
|
+
|
195
|
+
remote: -----> Ruby app detected
|
196
|
+
|
197
|
+
remote: -----> Installing bundler 2.2.21
|
198
|
+
|
199
|
+
remote: -----> Removing BUNDLED WITH version in the Gemfile.lock
|
200
|
+
|
201
|
+
remote: -----> Compiling Ruby/Rails
|
202
|
+
|
203
|
+
remote: -----> Using Ruby version: ruby-2.6.5
|
204
|
+
|
205
|
+
remote: -----> Installing dependencies using bundler 2.2.21
|
206
|
+
|
207
|
+
remote: Running: BUNDLE_WITHOUT='development:test' BUNDLE_PATH=vendor/bundle BUNDLE_BIN=vendor/bundle/bin BUNDLE_DEPLOYMENT=1 bundle install -j4
|
208
|
+
|
209
|
+
remote: Your bundle only supports platforms ["x86_64-darwin-20"] but your local platform
|
210
|
+
|
211
|
+
remote: is x86_64-linux. Add the current platform to the lockfile with `bundle lock
|
212
|
+
|
213
|
+
remote: --add-platform x86_64-linux` and try again.
|
214
|
+
|
215
|
+
remote: Bundler Output: Your bundle only supports platforms ["x86_64-darwin-20"] but your local platform
|
216
|
+
|
217
|
+
remote: is x86_64-linux. Add the current platform to the lockfile with `bundle lock
|
218
|
+
|
219
|
+
remote: --add-platform x86_64-linux` and try again.
|
220
|
+
|
221
|
+
remote:
|
222
|
+
|
223
|
+
remote: !
|
224
|
+
|
225
|
+
remote: ! Failed to install gems via Bundler.
|
226
|
+
|
227
|
+
remote: !
|
228
|
+
|
229
|
+
remote: ! Push rejected, failed to compile Ruby app.
|
230
|
+
|
231
|
+
remote:
|
232
|
+
|
233
|
+
remote: ! Push failed
|
234
|
+
|
235
|
+
remote: !
|
236
|
+
|
237
|
+
remote: ! ## Warning - The same version of this code has already been built: ee43c2151359d19a988bdfcd848456cef5d64254
|
238
|
+
|
239
|
+
remote: !
|
240
|
+
|
241
|
+
remote: ! We have detected that you have triggered a build from source code with version ee43c2151359d19a988bdfcd848456cef5d64254
|
242
|
+
|
243
|
+
remote: ! at least twice. One common cause of this behavior is attempting to deploy code from a different branch.
|
244
|
+
|
245
|
+
remote: !
|
246
|
+
|
247
|
+
remote: ! If you are developing on a branch and deploying via git you must run:
|
248
|
+
|
249
|
+
remote: !
|
250
|
+
|
251
|
+
remote: ! git push heroku <branchname>:main
|
252
|
+
|
253
|
+
remote: !
|
254
|
+
|
255
|
+
remote: ! This article goes into details on the behavior:
|
256
|
+
|
257
|
+
remote: ! https://devcenter.heroku.com/articles/duplicate-build-version
|
258
|
+
|
259
|
+
remote:
|
260
|
+
|
261
|
+
remote: Verifying deploy...
|
262
|
+
|
263
|
+
remote:
|
264
|
+
|
265
|
+
remote: ! Push rejected to b-blog-36388.
|
266
|
+
|
267
|
+
remote:
|
268
|
+
|
269
|
+
To https://git.heroku.com/b-blog-36388.git
|
270
|
+
|
271
|
+
! [remote rejected] master -> master (pre-receive hook declined)
|
272
|
+
|
273
|
+
error: failed to push some refs to 'https://git.heroku.com/b-blog-36388.git'
|
274
|
+
|
275
|
+
yukahayuusatoru@TokonamugonoAir b_blog %
|
276
|
+
|
277
|
+
```
|
278
|
+
|
279
|
+
|
280
|
+
|
1
|
-
###
|
281
|
+
### 新しいエラー内容
|
282
|
+
|
283
|
+
|
284
|
+
|
2
|
-
|
285
|
+
```
|
286
|
+
|
287
|
+
Sass::SyntaxError: wrong number of arguments (1 for 3) for `rgb'
|
288
|
+
|
289
|
+
```
|
290
|
+
|
291
|
+
|
292
|
+
|
293
|
+
```
|
294
|
+
|
295
|
+
ArgumentError: wrong number of arguments (1 for 3)
|
296
|
+
|
297
|
+
```
|
298
|
+
|
299
|
+
|
300
|
+
|
301
|
+
```
|
302
|
+
|
303
|
+
remote: !
|
304
|
+
|
305
|
+
remote: ! Precompiling assets failed.
|
306
|
+
|
307
|
+
remote: !
|
308
|
+
|
3
|
-
|
309
|
+
remote: ! Push rejected, failed to compile Ruby app.
|
310
|
+
|
311
|
+
remote:
|
312
|
+
|
313
|
+
remote: ! Push failed
|
314
|
+
|
315
|
+
remote: Verifying deploy...
|
316
|
+
|
317
|
+
remote:
|
318
|
+
|
319
|
+
remote: ! Push rejected to b-blog-36388.
|
320
|
+
|
321
|
+
```
|
2
質問を削除しました
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
この質問は削除しました
|
test
CHANGED
@@ -1,171 +1,3 @@
|
|
1
|
-
###
|
1
|
+
### この質問は削除しました
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
### エラー内容
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
```
|
10
|
-
|
11
|
-
remote: Sass::SyntaxError: wrong number of arguments (1 for 3) for `rgb'
|
12
|
-
|
13
|
-
remote: (sass):25
|
14
|
-
|
15
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/funcall.rb:311:in `reformat_argument_error'
|
16
|
-
|
17
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/funcall.rb:158:in `rescue in _perform'
|
18
|
-
|
19
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/funcall.rb:127:in `_perform'
|
20
|
-
|
21
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/node.rb:50:in `perform'
|
22
|
-
|
23
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/list_literal.rb:75:in `block in _perform'
|
24
|
-
|
25
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/list_literal.rb:75:in `map'
|
26
|
-
|
27
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/list_literal.rb:75:in `_perform'
|
28
|
-
|
29
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/node.rb:50:in `perform'
|
30
|
-
|
31
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:398:in `visit_prop'
|
32
|
-
|
33
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
|
34
|
-
|
35
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
|
36
|
-
|
37
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base'
|
38
|
-
|
39
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame'
|
40
|
-
|
41
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base'
|
42
|
-
|
43
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit'
|
44
|
-
|
45
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule'
|
46
|
-
|
47
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `map'
|
48
|
-
|
49
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule'
|
50
|
-
|
51
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
|
52
|
-
|
53
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:438:in `visit_rule'
|
54
|
-
|
55
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
|
56
|
-
|
57
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
|
58
|
-
|
59
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base'
|
60
|
-
|
61
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame'
|
62
|
-
|
63
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base'
|
64
|
-
|
65
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit'
|
66
|
-
|
67
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
|
68
|
-
|
69
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `map'
|
70
|
-
|
71
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `visit_children'
|
72
|
-
|
73
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children'
|
74
|
-
|
75
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
|
76
|
-
|
77
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:166:in `visit_children'
|
78
|
-
|
79
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `block in visit'
|
80
|
-
|
81
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:186:in `visit_root'
|
82
|
-
|
83
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
|
84
|
-
|
85
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:157:in `visit'
|
86
|
-
|
87
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:10:in `visit'
|
88
|
-
|
89
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/root_node.rb:36:in `css_tree'
|
90
|
-
|
91
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/tree/root_node.rb:20:in `render'
|
92
|
-
|
93
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/engine.rb:290:in `render'
|
94
|
-
|
95
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/sass_compressor.rb:48:in `call'
|
96
|
-
|
97
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/sass_compressor.rb:28:in `call'
|
98
|
-
|
99
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb:75:in `call_processor'
|
100
|
-
|
101
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb:57:in `block in call_processors'
|
102
|
-
|
103
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb:56:in `reverse_each'
|
104
|
-
|
105
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb:56:in `call_processors'
|
106
|
-
|
107
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb:134:in `load_from_unloaded'
|
108
|
-
|
109
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb:60:in `block in load'
|
110
|
-
|
111
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
|
112
|
-
|
113
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb:44:in `load'
|
114
|
-
|
115
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/cached_environment.rb:20:in `block in initialize'
|
116
|
-
|
117
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/cached_environment.rb:47:in `load'
|
118
|
-
|
119
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/base.rb:66:in `find_asset'
|
120
|
-
|
121
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/base.rb:73:in `find_all_linked_assets'
|
122
|
-
|
123
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/manifest.rb:142:in `block in find'
|
124
|
-
|
125
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths'
|
126
|
-
|
127
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/path_utils.rb:228:in `block in stat_tree'
|
128
|
-
|
129
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/path_utils.rb:212:in `block in stat_directory'
|
130
|
-
|
131
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/path_utils.rb:209:in `each'
|
132
|
-
|
133
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/path_utils.rb:209:in `stat_directory'
|
134
|
-
|
135
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/path_utils.rb:227:in `stat_tree'
|
136
|
-
|
137
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/legacy.rb:105:in `each'
|
138
|
-
|
139
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/legacy.rb:105:in `block in logical_paths'
|
140
|
-
|
141
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/legacy.rb:104:in `each'
|
142
|
-
|
143
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/legacy.rb:104:in `logical_paths'
|
144
|
-
|
145
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/manifest.rb:140:in `find'
|
146
|
-
|
147
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/manifest.rb:186:in `compile'
|
148
|
-
|
149
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-rails-3.2.2/lib/sprockets/rails/task.rb:67:in `block (3 levels) in define'
|
150
|
-
|
151
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/rake/sprocketstask.rb:147:in `with_logger'
|
152
|
-
|
153
|
-
remote: /tmp/build_530a75e2/vendor/bundle/ruby/2.6.0/gems/sprockets-rails-3.2.2/lib/sprockets/rails/task.rb:66:in `block (2 levels) in define'
|
154
|
-
|
155
|
-
remote:
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
```
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
### エラーの仮説
|
164
|
-
|
165
|
-
|
3
|
+
この質問は、前回、前々回で質問した内容と同じであり、わかりづらい内容であったため、この質問は削除いたします。
|
166
|
-
|
167
|
-
ArgumentErrorの部分は別の質問で添付します。
|
168
|
-
|
169
|
-
syntaxErrorなので、どこかの文法が間違っている?のかと思います。
|
170
|
-
|
171
|
-
何回も質問して、申し訳ありませんが、どなたか教えていただけると幸いです。
|
1
誤字を直しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -164,8 +164,8 @@
|
|
164
164
|
|
165
165
|
今回二つのエラーが出ているのですが、文字数制限の関係でsyntaxError部分のみ添付しています。
|
166
166
|
|
167
|
-
ArgumentErrorの部分は
|
167
|
+
ArgumentErrorの部分は別の質問で添付します。
|
168
168
|
|
169
|
-
syntaxErrorなので、どこかの文法が間違っている?
|
169
|
+
syntaxErrorなので、どこかの文法が間違っている?のかと思います。
|
170
170
|
|
171
171
|
何回も質問して、申し訳ありませんが、どなたか教えていただけると幸いです。
|