質問編集履歴
1
Gemfileを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -384,6 +384,142 @@
|
|
384
384
|
|
385
385
|
|
386
386
|
|
387
|
+
### Gemfile
|
388
|
+
|
389
|
+
|
390
|
+
|
391
|
+
```Ruby
|
392
|
+
|
393
|
+
#Gemfile
|
394
|
+
|
395
|
+
|
396
|
+
|
397
|
+
source 'https://rubygems.org'
|
398
|
+
|
399
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
400
|
+
|
401
|
+
|
402
|
+
|
403
|
+
ruby '2.6.1'
|
404
|
+
|
405
|
+
|
406
|
+
|
407
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
408
|
+
|
409
|
+
gem 'rails', '~> 6.0.0'
|
410
|
+
|
411
|
+
# Use sqlite3 as the database for Active Record
|
412
|
+
|
413
|
+
gem 'sqlite3', '~> 1.4'
|
414
|
+
|
415
|
+
# Use Puma as the app server
|
416
|
+
|
417
|
+
gem 'puma', '~> 3.11'
|
418
|
+
|
419
|
+
# Use SCSS for stylesheets
|
420
|
+
|
421
|
+
gem 'sass-rails', '~> 5'
|
422
|
+
|
423
|
+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
424
|
+
|
425
|
+
gem 'webpacker', '~> 4.0'
|
426
|
+
|
427
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
428
|
+
|
429
|
+
gem 'turbolinks', '~> 5'
|
430
|
+
|
431
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
432
|
+
|
433
|
+
gem 'jbuilder', '~> 2.7'
|
434
|
+
|
435
|
+
# Use Redis adapter to run Action Cable in production
|
436
|
+
|
437
|
+
# gem 'redis', '~> 4.0'
|
438
|
+
|
439
|
+
# Use Active Model has_secure_password
|
440
|
+
|
441
|
+
# gem 'bcrypt', '~> 3.1.7'
|
442
|
+
|
443
|
+
|
444
|
+
|
445
|
+
# Use Active Storage variant
|
446
|
+
|
447
|
+
# gem 'image_processing', '~> 1.2'
|
448
|
+
|
449
|
+
|
450
|
+
|
451
|
+
# Reduces boot times through caching; required in config/boot.rb
|
452
|
+
|
453
|
+
gem 'bootsnap', '>= 1.4.2', require: false
|
454
|
+
|
455
|
+
|
456
|
+
|
457
|
+
group :development, :test do
|
458
|
+
|
459
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
460
|
+
|
461
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
462
|
+
|
463
|
+
end
|
464
|
+
|
465
|
+
|
466
|
+
|
467
|
+
group :development do
|
468
|
+
|
469
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
470
|
+
|
471
|
+
gem 'web-console', '>= 3.3.0'
|
472
|
+
|
473
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
474
|
+
|
475
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
476
|
+
|
477
|
+
gem 'spring'
|
478
|
+
|
479
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
480
|
+
|
481
|
+
end
|
482
|
+
|
483
|
+
|
484
|
+
|
485
|
+
group :test do
|
486
|
+
|
487
|
+
# Adds support for Capybara system testing and selenium driver
|
488
|
+
|
489
|
+
gem 'capybara', '>= 2.15'
|
490
|
+
|
491
|
+
gem 'selenium-webdriver'
|
492
|
+
|
493
|
+
# Easy installation and use of web drivers to run system tests with browsers
|
494
|
+
|
495
|
+
gem 'webdrivers'
|
496
|
+
|
497
|
+
end
|
498
|
+
|
499
|
+
|
500
|
+
|
501
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
502
|
+
|
503
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
504
|
+
|
505
|
+
gem 'devise'
|
506
|
+
|
507
|
+
gem 'omniauth'
|
508
|
+
|
509
|
+
gem 'carrierwave'
|
510
|
+
|
511
|
+
gem 'rmagick'
|
512
|
+
|
513
|
+
gem 'jquery-rails'
|
514
|
+
|
515
|
+
gem 'jquery-ui-rails'
|
516
|
+
|
517
|
+
gem 'ransack'
|
518
|
+
|
519
|
+
```
|
520
|
+
|
521
|
+
|
522
|
+
|
387
523
|
|
388
524
|
|
389
525
|
### 試したこと
|