質問編集履歴

2

Gemfile 追加

2019/06/17 07:00

投稿

susiyaki
susiyaki

スコア39

test CHANGED
File without changes
test CHANGED
@@ -315,3 +315,245 @@
315
315
  }
316
316
 
317
317
  ```
318
+
319
+
320
+
321
+
322
+
323
+ ## 追記
324
+
325
+
326
+
327
+ エラーログを見返すと、group->test, developmentのgemでエラーが出ているようです。
328
+
329
+ どうすれば消えるでしょうか?
330
+
331
+ ```
332
+
333
+ source 'https://rubygems.org'
334
+
335
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
336
+
337
+
338
+
339
+ ruby '2.5.1'
340
+
341
+
342
+
343
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
344
+
345
+ gem 'rails', '~> 5.2.3'
346
+
347
+ # Use mysql as the database for Active Record
348
+
349
+ gem 'mysql2', '>= 0.4.4', '< 0.6.0'
350
+
351
+ # Use Puma as the app server
352
+
353
+ gem 'puma', '~> 3.11'
354
+
355
+ # Use SCSS for stylesheets
356
+
357
+ gem 'sass-rails', '~> 5.0'
358
+
359
+ # Use Uglifier as compressor for JavaScript assets
360
+
361
+ gem 'uglifier', '>= 1.3.0'
362
+
363
+ # See https://github.com/rails/execjs#readme for more supported runtimes
364
+
365
+ gem 'mini_racer', platforms: :ruby
366
+
367
+
368
+
369
+ # Use CoffeeScript for .coffee assets and views
370
+
371
+ gem 'coffee-rails', '~> 4.2'
372
+
373
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
374
+
375
+ gem 'turbolinks', '~> 5'
376
+
377
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
378
+
379
+ gem 'jbuilder', '~> 2.5'
380
+
381
+ # Use Redis adapter to run Action Cable in production
382
+
383
+ # Use ActiveModel has_secure_password
384
+
385
+ # gem 'bcrypt', '~> 3.1.7'
386
+
387
+
388
+
389
+ # Use ActiveStorage variant
390
+
391
+ # gem 'mini_magick', '~> 4.8'
392
+
393
+
394
+
395
+ # Use Capistrano for deployment
396
+
397
+ # gem 'capistrano-rails', group: :development
398
+
399
+
400
+
401
+ # Reduces boot times through caching; required in config/boot.rb
402
+
403
+ gem 'bootsnap', '>= 1.1.0', require: false
404
+
405
+
406
+
407
+ # authenticate
408
+
409
+ gem 'devise'
410
+
411
+ gem 'cancancan'
412
+
413
+
414
+
415
+ # admin-page
416
+
417
+ gem 'activeadmin'
418
+
419
+
420
+
421
+ # markdown
422
+
423
+ gem 'redcarpet'
424
+
425
+ # syntax highlight
426
+
427
+ gem 'rouge'
428
+
429
+ # markdown realtime preview
430
+
431
+ gem 'backbone-on-rails'
432
+
433
+ gem 'marked-rails'
434
+
435
+
436
+
437
+ # locale
438
+
439
+ gem 'rails-i18n', '~> 5.1'
440
+
441
+
442
+
443
+ # pv
444
+
445
+ gem 'redis'
446
+
447
+ gem 'redis-objects'
448
+
449
+ gem 'whenever', require: false
450
+
451
+
452
+
453
+ # chart
454
+
455
+ gem 'chart-js-rails'
456
+
457
+ gem 'gon'
458
+
459
+
460
+
461
+ # image uploader
462
+
463
+ gem 'carrierwave'
464
+
465
+ gem 'rmagick'
466
+
467
+
468
+
469
+ # use react
470
+
471
+ gem 'react_on_rails'
472
+
473
+ gem 'webpacker'
474
+
475
+
476
+
477
+ # use bootstrap4
478
+
479
+ gem 'bootstrap'
480
+
481
+ gem 'jquery-rails'
482
+
483
+
484
+
485
+ group :development, :test do
486
+
487
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
488
+
489
+ # gem 'redis', '~> 4.0'
490
+
491
+ # gem 'redis', '~> 4.0'
492
+
493
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
494
+
495
+ end
496
+
497
+
498
+
499
+ group :development do
500
+
501
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
502
+
503
+ gem 'web-console', '>= 3.3.0'
504
+
505
+ gem 'listen', '>= 3.0.5', '< 3.2'
506
+
507
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
508
+
509
+ gem 'spring'
510
+
511
+ gem 'spring-watcher-listen', '~> 2.0.0'
512
+
513
+ gem 'foreman'
514
+
515
+ gem 'capistrano'
516
+
517
+ gem 'capistrano-bundler'
518
+
519
+ gem 'capistrano-rails'
520
+
521
+ gem 'capistrano-rbenv'
522
+
523
+ gem 'ed25519'
524
+
525
+ gem 'bcrypt_pbkdf'
526
+
527
+ end
528
+
529
+
530
+
531
+ group :test do
532
+
533
+ # Adds support for Capybara system testing and selenium driver
534
+
535
+ gem 'capybara', '>= 2.15'
536
+
537
+ gem 'selenium-webdriver'
538
+
539
+ # Easy installation and use of chromedriver to run system tests with Chrome
540
+
541
+ gem 'chromedriver-helper'
542
+
543
+ end
544
+
545
+
546
+
547
+ group :production, :staging do
548
+
549
+ gem 'unicorn'
550
+
551
+ end
552
+
553
+
554
+
555
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
556
+
557
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
558
+
559
+ ```

1

ログファイルの省略

2019/06/17 07:00

投稿

susiyaki
susiyaki

スコア39

test CHANGED
File without changes
test CHANGED
@@ -48,6 +48,8 @@
48
48
 
49
49
  ```log
50
50
 
51
+ ...略
52
+
51
53
 
52
54
 
53
55
  DEBUG [ffc51f1f] Command: ( export RBENV_ROOT="$HOME/.rbenv" RBENV_VERSION="2.5.1" ; /usr/bin/env ln -s /var/www/blog_app/shared/public/assets /var/www/blog_app/releases/20190616214753/public/assets )