teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

修正

2020/05/24 13:56

投稿

atage517
atage517

スコア36

title CHANGED
File without changes
body CHANGED
@@ -37,7 +37,67 @@
37
37
  ### 該当のソースコード
38
38
 
39
39
  ```ここに言語名を入力
40
+ source 'https://rubygems.org'
41
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
42
+
43
+ ruby '2.7.1'
44
+
45
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
46
+ gem 'rails', '~> 6.0.3'
47
+ # Use sqlite3 as the database for Active Record
48
+ gem 'sqlite3'
49
+ # Use Puma as the app server
50
+ gem 'puma', '~> 4.1'
51
+ # Use SCSS for stylesheets
52
+ gem 'sass-rails', '>= 6'
53
+ # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
54
+ gem 'webpacker', '~> 4.0'
55
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
56
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
57
+ gem 'jbuilder', '~> 2.7'
58
+ # Use Redis adapter to run Action Cable in production
59
+ # gem 'redis', '~> 4.0'
60
+ # Use Active Model has_secure_password
61
+ # gem 'bcrypt', '~> 3.1.7'
62
+
63
+ # Use Active Storage variant
64
+ # gem 'image_processing', '~> 1.2'
65
+
66
+ # Reduces boot times through caching; required in config/boot.rb
67
+ gem 'bootsnap', '>= 1.4.2', require: false
68
+
69
+ group :development, :test do
70
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
71
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
72
+
73
+ end
74
+
75
+ group :development do
76
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
77
+ gem 'web-console', '>= 3.3.0'
78
+ gem 'listen', '~> 3.2'
40
- Build failed -- check your build output: https://dashboard.heroku.com/apps/b9c2d8d9-76e9-4815-a5df-060917313259/activity/builds/d91f5f49-b2a5-4df8-ae86-b762c908e
79
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
80
+ gem 'spring'
81
+ gem 'spring-watcher-listen', '~> 2.0.0'
82
+ end
83
+
84
+ group :test do
85
+ # Adds support for Capybara system testing and selenium driver
86
+ gem 'capybara', '>= 2.15'
87
+ gem 'selenium-webdriver'
88
+ # Easy installation and use of web drivers to run system tests with browsers
89
+ gem 'webdrivers'
90
+ gem 'sqlite3'
91
+ end
92
+
93
+ group :production do
94
+ gem 'pg'
95
+ end
96
+
97
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
98
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
99
+ gem "jquery-rails"
100
+
41
101
  ```
42
102
 
43
103