質問編集履歴

2

WARNINGメッセージを追記

2017/06/01 09:40

投稿

graphic-ocean
graphic-ocean

スコア12

test CHANGED
File without changes
test CHANGED
@@ -360,6 +360,32 @@
360
360
 
361
361
 
362
362
 
363
+ WARNINGメッセージ
364
+
365
+ ```WARNINGメッセージ
366
+
367
+ ###### WARNING:
368
+
369
+ You have not declared a Ruby version in your Gemfile.
370
+
371
+ To set your Ruby version add this line to your Gemfile:
372
+
373
+ ruby '2.3.4'
374
+
375
+ # See https://devcenter.heroku.com/articles/ruby-versions for more information.
376
+
377
+ ###### WARNING:
378
+
379
+ No Procfile detected, using the default web server.
380
+
381
+ We recommend explicitly declaring how to boot your server process via a Procfile.
382
+
383
+ https://devcenter.heroku.com/articles/ruby-default-web-server
384
+
385
+ ```
386
+
387
+
388
+
363
389
  様々なエラーが出ており、どこから直していけばいいのか、なかなか検討がつきません。
364
390
 
365
391
  もし、少しでも対策がありましたらご教示頂けますと幸いです。

1

application\.jsの内容を追加

2017/06/01 09:40

投稿

graphic-ocean
graphic-ocean

スコア12

test CHANGED
File without changes
test CHANGED
@@ -306,6 +306,60 @@
306
306
 
307
307
 
308
308
 
309
+ application.jsの内容
310
+
311
+ ```application.js
312
+
313
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
314
+
315
+ // listed below.
316
+
317
+ //
318
+
319
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
320
+
321
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
322
+
323
+ //
324
+
325
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
326
+
327
+ // compiled file.
328
+
329
+ //
330
+
331
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
332
+
333
+ // about supported directives.
334
+
335
+ //
336
+
337
+ //= require jquery
338
+
339
+ //= require jquery_ujs
340
+
341
+ //= require twitter/bootstrap
342
+
343
+ //= require bootstrap-material-design
344
+
345
+ //= require turbolinks
346
+
347
+ //= require bootstrap
348
+
349
+ //= require_tree .
350
+
351
+
352
+
353
+ $(function(){
354
+
355
+ $.material.init();
356
+
357
+ });
358
+
359
+ ```
360
+
361
+
362
+
309
363
  様々なエラーが出ており、どこから直していけばいいのか、なかなか検討がつきません。
310
364
 
311
365
  もし、少しでも対策がありましたらご教示頂けますと幸いです。