質問編集履歴
1
Gemfile追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -13,4 +13,77 @@
|
|
13
13
|
(PUMA起動しておらず、nginxmのみ起動確認できる状態)
|
14
14
|
|
15
15
|
|
16
|
-
わかる方がいらっしゃいましたらご教授お願いします。
|
16
|
+
わかる方がいらっしゃいましたらご教授お願いします。
|
17
|
+
|
18
|
+
```Gemfile
|
19
|
+
gem 'rails', '~> 5.1.4'
|
20
|
+
# Use mysql as the database for Active Record
|
21
|
+
gem 'mysql2', '>= 0.3.18', '< 0.5'
|
22
|
+
gem "paranoia", "~> 2.2"
|
23
|
+
|
24
|
+
gem 'carrierwave'
|
25
|
+
gem 'fog'
|
26
|
+
|
27
|
+
gem 'sorcery'
|
28
|
+
|
29
|
+
gem 'activerecord-session_store'
|
30
|
+
|
31
|
+
gem 'aws-sdk'
|
32
|
+
|
33
|
+
gem 'kaminari'
|
34
|
+
|
35
|
+
# Use Puma as the app server
|
36
|
+
gem 'puma', '~> 3.7.0'
|
37
|
+
# Use SCSS for stylesheets
|
38
|
+
gem 'sass-rails', '~> 5.0'
|
39
|
+
# Use SCSS for stylesheets
|
40
|
+
gem 'bower-rails'
|
41
|
+
gem 'font-awesome-rails'
|
42
|
+
# Use Uglifier as compressor for JavaScript assets
|
43
|
+
gem 'momentjs-rails'
|
44
|
+
gem 'bootstrap3-datetimepicker-rails'
|
45
|
+
gem 'therubyracer'
|
46
|
+
|
47
|
+
gem 'uglifier', '>= 1.3.0'
|
48
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
49
|
+
# gem 'therubyracer', platforms: :ruby
|
50
|
+
|
51
|
+
# Use CoffeeScript for .coffee assets and views
|
52
|
+
gem 'coffee-rails', '~> 4.2'
|
53
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
54
|
+
gem 'turbolinks', '~> 5'
|
55
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
56
|
+
gem 'jbuilder', '~> 2.5'
|
57
|
+
# Use Redis adapter to run Action Cable in production
|
58
|
+
# gem 'redis', '~> 3.0'
|
59
|
+
# Use ActiveModel has_secure_password
|
60
|
+
# gem 'bcrypt', '~> 3.1.7'
|
61
|
+
|
62
|
+
# Use Capistrano for deployment
|
63
|
+
# gem 'capistrano-rails', group: :development
|
64
|
+
|
65
|
+
group :development, :test do
|
66
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
67
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
68
|
+
# Adds support for Capybara system testing and selenium driver
|
69
|
+
gem 'capybara', '~> 2.13'
|
70
|
+
gem 'selenium-webdriver'
|
71
|
+
gem 'pry-rails'
|
72
|
+
gem 'pry-byebug'
|
73
|
+
gem 'pry-doc'
|
74
|
+
end
|
75
|
+
|
76
|
+
group :development do
|
77
|
+
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
|
78
|
+
gem 'web-console', '>= 3.3.0'
|
79
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
80
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
81
|
+
gem 'spring'
|
82
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
83
|
+
end
|
84
|
+
|
85
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
86
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
87
|
+
|
88
|
+
gem 'webpacker' , '~> 2.0.0'
|
89
|
+
```
|