質問編集履歴
1
Gemfileを更新
title
CHANGED
File without changes
|
body
CHANGED
@@ -112,6 +112,44 @@
|
|
112
112
|
### 補足情報(FW/ツールのバージョンなど)
|
113
113
|
|
114
114
|
```
|
115
|
+
source 'https://rubygems.org'
|
116
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
117
|
+
|
118
|
+
ruby '2.5.1'
|
119
|
+
|
120
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
121
|
+
gem 'rails', '~> 5.2.3'
|
122
|
+
# Use mysql as the database for Active Record
|
123
|
+
gem 'mysql2', '0.5.3'
|
124
|
+
# Use Puma as the app server
|
125
|
+
gem 'puma', '~> 3.11'
|
126
|
+
# Use SCSS for stylesheets
|
127
|
+
gem 'sass-rails', '~> 5.0'
|
128
|
+
# Use Uglifier as compressor for JavaScript assets
|
129
|
+
gem 'uglifier', '>= 1.3.0'
|
130
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
131
|
+
# gem 'mini_racer', platforms: :ruby
|
132
|
+
|
133
|
+
# Use CoffeeScript for .coffee assets and views
|
134
|
+
gem 'coffee-rails', '~> 4.2'
|
135
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
136
|
+
gem 'turbolinks', '~> 5'
|
137
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
138
|
+
gem 'jbuilder', '~> 2.5'
|
139
|
+
# Use Redis adapter to run Action Cable in production
|
140
|
+
# gem 'redis', '~> 4.0'
|
141
|
+
# Use ActiveModel has_secure_password
|
142
|
+
# gem 'bcrypt', '~> 3.1.7'
|
143
|
+
|
144
|
+
# Use ActiveStorage variant
|
145
|
+
# gem 'mini_magick', '~> 4.8'
|
146
|
+
|
147
|
+
# Use Capistrano for deployment
|
148
|
+
# gem 'capistrano-rails', group: :development
|
149
|
+
|
150
|
+
# Reduces boot times through caching; required in config/boot.rb
|
151
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
152
|
+
|
115
153
|
group :development, :test do
|
116
154
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
117
155
|
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
@@ -143,4 +181,17 @@
|
|
143
181
|
# gem 'chromedriver-helper'
|
144
182
|
gem 'webdrivers'
|
145
183
|
end
|
184
|
+
|
185
|
+
group :production do
|
186
|
+
gem 'unicorn', '5.4.1'
|
187
|
+
end
|
188
|
+
|
189
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
190
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
191
|
+
gem 'devise'
|
192
|
+
gem 'haml-rails'
|
193
|
+
gem 'font-awesome-sass'
|
194
|
+
gem 'pry-rails'
|
195
|
+
gem 'dotenv-rails'
|
196
|
+
gem 'carrierwave'
|
146
197
|
```
|