質問編集履歴
4
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
|
57
57
|
|
58
58
|
|
59
|
-
```
|
59
|
+
```gemfile
|
60
60
|
|
61
61
|
source 'https://rubygems.org'
|
62
62
|
|
3
コード追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -53,3 +53,175 @@
|
|
53
53
|
|
54
54
|
|
55
55
|
```
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
```ここに言語を入力
|
60
|
+
|
61
|
+
source 'https://rubygems.org'
|
62
|
+
|
63
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
ruby '2.5.1'
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
72
|
+
|
73
|
+
# gem 'rails', '~> 5.2.3'
|
74
|
+
|
75
|
+
gem 'rails', '~> 5.2.5'
|
76
|
+
|
77
|
+
# Use sqlite3 as the database for Active Record
|
78
|
+
|
79
|
+
# gem 'sqlite3'
|
80
|
+
|
81
|
+
# Use Puma as the app server
|
82
|
+
|
83
|
+
gem 'puma', '~> 3.11'
|
84
|
+
|
85
|
+
# gem 'puma'
|
86
|
+
|
87
|
+
# Use SCSS for stylesheets
|
88
|
+
|
89
|
+
gem 'sass-rails', '~> 5.0'
|
90
|
+
|
91
|
+
# gem 'sass-rails'
|
92
|
+
|
93
|
+
# Use Uglifier as compressor for JavaScript assets
|
94
|
+
|
95
|
+
gem 'uglifier', '>= 1.3.0'
|
96
|
+
|
97
|
+
# gem 'uglifier'
|
98
|
+
|
99
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
100
|
+
|
101
|
+
# gem 'mini_racer', platforms: :ruby
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
# Use CoffeeScript for .coffee assets and views
|
106
|
+
|
107
|
+
gem 'coffee-rails', '~> 4.2'
|
108
|
+
|
109
|
+
# gem 'coffee-rails'
|
110
|
+
|
111
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
112
|
+
|
113
|
+
gem 'turbolinks', '~> 5'
|
114
|
+
|
115
|
+
# gem 'turbolinks'
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
120
|
+
|
121
|
+
gem 'jbuilder', '~> 2.5'
|
122
|
+
|
123
|
+
# gem 'jbuilder'
|
124
|
+
|
125
|
+
# Use Redis adapter to run Action Cable in production
|
126
|
+
|
127
|
+
# gem 'redis', '~> 4.0'
|
128
|
+
|
129
|
+
# Use ActiveModel has_secure_password
|
130
|
+
|
131
|
+
# gem 'bcrypt', '~> 3.1.7'
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
# Use ActiveStorage variant
|
136
|
+
|
137
|
+
# gem 'mini_magick', '~> 4.8'
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
# Use Capistrano for deployment
|
142
|
+
|
143
|
+
# gem 'capistrano-rails', group: :development
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
# Reduces boot times through caching; required in config/boot.rb
|
148
|
+
|
149
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
150
|
+
|
151
|
+
# gem 'bootsnap', require: false
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
group :development, :test do
|
156
|
+
|
157
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
158
|
+
|
159
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
160
|
+
|
161
|
+
end
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
group :development do
|
166
|
+
|
167
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
168
|
+
|
169
|
+
gem 'web-console', '>= 3.3.0'
|
170
|
+
|
171
|
+
# gem 'web-console'
|
172
|
+
|
173
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
174
|
+
|
175
|
+
# gem 'listen'
|
176
|
+
|
177
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
178
|
+
|
179
|
+
gem 'spring'
|
180
|
+
|
181
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
182
|
+
|
183
|
+
# gem 'spring-watcher-listen'
|
184
|
+
|
185
|
+
end
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
group :test do
|
190
|
+
|
191
|
+
# Adds support for Capybara system testing and selenium driver
|
192
|
+
|
193
|
+
gem 'capybara', '>= 2.15'
|
194
|
+
|
195
|
+
# gem 'capybara'
|
196
|
+
|
197
|
+
gem 'selenium-webdriver'
|
198
|
+
|
199
|
+
# Easy installation and use of chromedriver to run system tests with Chrome
|
200
|
+
|
201
|
+
gem 'chromedriver-helper'
|
202
|
+
|
203
|
+
end
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
208
|
+
|
209
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
gem 'font-awesome-sass'
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
#デプロイ用
|
220
|
+
|
221
|
+
gem 'sqlite3', group: [:development, :test]
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
gem "mimemagic", "~> 0.3.10"
|
226
|
+
|
227
|
+
```
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,7 +44,9 @@
|
|
44
44
|
|
45
45
|
```ここに言語を入力
|
46
46
|
|
47
|
-
/app/vendor/bundle/ruby/2.5.0/gems/bundler-2.2.16/lib/bundler/rubygems_integration.rb:334:in `block (2 levels) in replace_gem':
|
47
|
+
/app/vendor/bundle/ruby/2.5.0/gems/bundler-2.2.16/lib/bundler/rubygems_integration.rb:334:in `block (2 levels) in replace_gem':
|
48
|
+
|
49
|
+
Error loading the 'sqlite3' Active Record adapter. Missing a gem it depends on? sqlite3 is not part of the bundle. Add it to your Gemfile. (LoadError)
|
48
50
|
|
49
51
|
|
50
52
|
|
1
説明変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,7 +28,7 @@
|
|
28
28
|
|
29
29
|
|
30
30
|
|
31
|
-
|
31
|
+
|
32
32
|
|
33
33
|
|
34
34
|
|