質問編集履歴

1

Gemfileを更新

2020/10/11 15:16

投稿

kazuya.ruby
kazuya.ruby

スコア0

test CHANGED
File without changes
test CHANGED
@@ -226,6 +226,82 @@
226
226
 
227
227
  ```
228
228
 
229
+ source 'https://rubygems.org'
230
+
231
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
232
+
233
+
234
+
235
+ ruby '2.5.1'
236
+
237
+
238
+
239
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
240
+
241
+ gem 'rails', '~> 5.2.3'
242
+
243
+ # Use mysql as the database for Active Record
244
+
245
+ gem 'mysql2', '0.5.3'
246
+
247
+ # Use Puma as the app server
248
+
249
+ gem 'puma', '~> 3.11'
250
+
251
+ # Use SCSS for stylesheets
252
+
253
+ gem 'sass-rails', '~> 5.0'
254
+
255
+ # Use Uglifier as compressor for JavaScript assets
256
+
257
+ gem 'uglifier', '>= 1.3.0'
258
+
259
+ # See https://github.com/rails/execjs#readme for more supported runtimes
260
+
261
+ # gem 'mini_racer', platforms: :ruby
262
+
263
+
264
+
265
+ # Use CoffeeScript for .coffee assets and views
266
+
267
+ gem 'coffee-rails', '~> 4.2'
268
+
269
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
270
+
271
+ gem 'turbolinks', '~> 5'
272
+
273
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
274
+
275
+ gem 'jbuilder', '~> 2.5'
276
+
277
+ # Use Redis adapter to run Action Cable in production
278
+
279
+ # gem 'redis', '~> 4.0'
280
+
281
+ # Use ActiveModel has_secure_password
282
+
283
+ # gem 'bcrypt', '~> 3.1.7'
284
+
285
+
286
+
287
+ # Use ActiveStorage variant
288
+
289
+ # gem 'mini_magick', '~> 4.8'
290
+
291
+
292
+
293
+ # Use Capistrano for deployment
294
+
295
+ # gem 'capistrano-rails', group: :development
296
+
297
+
298
+
299
+ # Reduces boot times through caching; required in config/boot.rb
300
+
301
+ gem 'bootsnap', '>= 1.1.0', require: false
302
+
303
+
304
+
229
305
  group :development, :test do
230
306
 
231
307
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
@@ -288,4 +364,30 @@
288
364
 
289
365
  end
290
366
 
367
+
368
+
369
+ group :production do
370
+
371
+ gem 'unicorn', '5.4.1'
372
+
373
+ end
374
+
375
+
376
+
377
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
378
+
379
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
380
+
381
+ gem 'devise'
382
+
383
+ gem 'haml-rails'
384
+
385
+ gem 'font-awesome-sass'
386
+
387
+ gem 'pry-rails'
388
+
389
+ gem 'dotenv-rails'
390
+
391
+ gem 'carrierwave'
392
+
291
- ```
393
+ ```