質問編集履歴
3
追加しようとしたgemfile名のスペルが間違っていたので修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -174,7 +174,7 @@
|
|
174
174
|
|
175
175
|
wicked_pdf
|
176
176
|
|
177
|
-
fontawesome-sass
|
177
|
+
font-awesome-sass
|
178
178
|
|
179
179
|
|
180
180
|
|
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -168,6 +168,16 @@
|
|
168
168
|
|
169
169
|
|
170
170
|
|
171
|
+
追記
|
172
|
+
|
173
|
+
追加しようとしたgem
|
174
|
+
|
175
|
+
wicked_pdf
|
176
|
+
|
177
|
+
fontawesome-sass
|
178
|
+
|
179
|
+
|
180
|
+
|
171
181
|
```gemfile
|
172
182
|
|
173
183
|
source 'https://rubygems.org'
|
1
gemfile の内容を追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -165,3 +165,137 @@
|
|
165
165
|
|
166
166
|
|
167
167
|
解決策や問題の探し方など、何か知見のある方アドバイスいただけると嬉しいです。
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
```gemfile
|
172
|
+
|
173
|
+
source 'https://rubygems.org'
|
174
|
+
|
175
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
ruby '2.6.5'
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
184
|
+
|
185
|
+
gem 'rails', '~> 6.0.2', '>= 6.0.2.1'
|
186
|
+
|
187
|
+
# Use Puma as the app server
|
188
|
+
|
189
|
+
gem 'puma', '~> 4.1'
|
190
|
+
|
191
|
+
# Use SCSS for stylesheets
|
192
|
+
|
193
|
+
gem 'sass-rails', '>= 6'
|
194
|
+
|
195
|
+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
196
|
+
|
197
|
+
gem 'webpacker', '~> 4.0'
|
198
|
+
|
199
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
200
|
+
|
201
|
+
gem 'turbolinks', '~> 5'
|
202
|
+
|
203
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
204
|
+
|
205
|
+
gem 'jbuilder', '~> 2.7'
|
206
|
+
|
207
|
+
# Use Redis adapter to run Action Cable in production
|
208
|
+
|
209
|
+
# gem 'redis', '~> 4.0'
|
210
|
+
|
211
|
+
# Use Active Model has_secure_password
|
212
|
+
|
213
|
+
# gem 'bcrypt', '~> 3.1.7'
|
214
|
+
|
215
|
+
gem 'devise'
|
216
|
+
|
217
|
+
gem 'devise-i18n'
|
218
|
+
|
219
|
+
gem 'chartkick'
|
220
|
+
|
221
|
+
gem 'groupdate'
|
222
|
+
|
223
|
+
gem 'omniauth-facebook'
|
224
|
+
|
225
|
+
gem 'omniauth-twitter'
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
# Use Active Storage variant
|
230
|
+
|
231
|
+
# gem 'image_processing', '~> 1.2'
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
# Reduces boot times through caching; required in config/boot.rb
|
236
|
+
|
237
|
+
gem 'bootsnap', '>= 1.4.2', require: false
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
group :development, :test do
|
242
|
+
|
243
|
+
gem 'sqlite3', '~> 1.4'
|
244
|
+
|
245
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
246
|
+
|
247
|
+
gem 'rspec-rails', '4.0.0.beta4'
|
248
|
+
|
249
|
+
gem 'factory_bot_rails'
|
250
|
+
|
251
|
+
gem 'pry-rails'
|
252
|
+
|
253
|
+
end
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
group :development do
|
258
|
+
|
259
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
260
|
+
|
261
|
+
gem 'web-console', '>= 3.3.0'
|
262
|
+
|
263
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
264
|
+
|
265
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
266
|
+
|
267
|
+
gem 'spring'
|
268
|
+
|
269
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
270
|
+
|
271
|
+
gem 'spring-commands-rspec'
|
272
|
+
|
273
|
+
end
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
group :test do
|
278
|
+
|
279
|
+
gem 'capybara'
|
280
|
+
|
281
|
+
gem 'webdrivers'
|
282
|
+
|
283
|
+
gem 'launchy'
|
284
|
+
|
285
|
+
gem 'rails-controller-testing'
|
286
|
+
|
287
|
+
end
|
288
|
+
|
289
|
+
group :production do
|
290
|
+
|
291
|
+
gem 'pg'
|
292
|
+
|
293
|
+
end
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
298
|
+
|
299
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
300
|
+
|
301
|
+
```
|